解决冲突
commit
fce4518982
@ -0,0 +1,47 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 作业流程
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-23 13:13
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_ACTION_GROUP")
|
||||
@Api("作业流程")
|
||||
public class WmsActionGroup extends BaseBean {
|
||||
|
||||
@Column(name="AG_NAME_E")
|
||||
@ApiParam("英文流程名称")
|
||||
private String agNameE;
|
||||
|
||||
@Column(name="AG_DESC_E")
|
||||
@ApiParam("英文流程描述")
|
||||
private String agDescE;
|
||||
|
||||
@Column(name="AG_NAME_C")
|
||||
@ApiParam("中文流程名称")
|
||||
private String agNameC;
|
||||
|
||||
@Column(name="AG_DESC_C")
|
||||
@ApiParam("中文流程描述")
|
||||
private String agDescC;
|
||||
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 作业流程明细
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-23 13:23
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_ACTION_GROUP_DETAILS")
|
||||
@Api("作业流程明细")
|
||||
public class WmsActionGroupDetails extends BaseBean {
|
||||
|
||||
@Column(name = "AG_ID")
|
||||
@ApiParam(value = "作业流程ID", example = "0")
|
||||
private Long agId;
|
||||
|
||||
@Column(name = "SEQ")
|
||||
@ApiParam(value = "序号", example = "0")
|
||||
private Integer seq;
|
||||
|
||||
@Column(name = "OK_SEQ")
|
||||
@ApiParam(value = "成功跳转步骤", example = "0")
|
||||
private Integer okSeq;
|
||||
|
||||
@Column(name = "NG_SEQ")
|
||||
@ApiParam(value = "失败跳转步骤", example = "0")
|
||||
private Integer ngSeq;
|
||||
|
||||
@Column(name = "VALUE_TYPE")
|
||||
@ApiParam(value = "动作类型", example = "10")
|
||||
private Integer valueType;
|
||||
|
||||
@Column(name = "TO_UPPER")
|
||||
@ApiParam(value = "是否转为大写", example = "2")
|
||||
private Integer toUpper;
|
||||
|
||||
@Column(name = "LEN_CHECK")
|
||||
@ApiParam(value = "长度检查", example = "0")
|
||||
private Integer lenCheck;
|
||||
|
||||
@Column(name = "AS_ID")
|
||||
@ApiParam(value = "作业步骤", example = "0")
|
||||
private Long asId;
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionGroupDetails;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-23 13:32
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsActionGroupDetailsRepository extends BaseRepository<WmsActionGroupDetails,Long> {
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsActionGroup;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : amy
|
||||
* @CreateDate : 2018-11-23 13:34
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsActionGroupRepository extends BaseRepository<WmsActionGroup,Long> {
|
||||
}
|
Loading…
Reference in New Issue