Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
fefa52c9d2
@ -0,0 +1,52 @@
|
||||
package cn.estsh.i3plus.pojo.mes.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.*;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :工位操作跳过记录表
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2020-12-24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Inheritance(strategy = InheritanceType.JOINED)
|
||||
@Table(name = "MES_WORK_CELL_JUMP_RECORD")
|
||||
@Api("mes工位操作跳过记录表")
|
||||
public class MesWorkCellJumpRecord extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 1017369816822438021L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "WORK_CELL_CODE")
|
||||
@ApiParam("工作单元代码")
|
||||
private String workCellCode;
|
||||
|
||||
@Column(name = "JUMP_TYPE")
|
||||
@ApiParam("跳过类型 10=过程条码")
|
||||
private Integer jumpType;
|
||||
|
||||
@Column(name = "JUMP_VALUE")
|
||||
@ApiParam("跳过值")
|
||||
private String jumpValue;
|
||||
|
||||
@Column(name = "JUMP_DESC")
|
||||
@ApiParam("跳过描述")
|
||||
private String jumpDesc;
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesWorkCellJumpRecord;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesWorkCellJumpRecordRepository extends BaseRepository<MesWorkCellJumpRecord, Long> {
|
||||
}
|
@ -0,0 +1,166 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsMoveSn;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsStockSn;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : GCDC集装箱model
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-11-24 18:17
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("GCDC集装箱model")
|
||||
public class WmsGcdcContainerModel extends BaseBean {
|
||||
|
||||
@ApiParam("移库单号号")
|
||||
public String orderNo;
|
||||
|
||||
@ApiParam("库存移动单号")
|
||||
public String moveNo;
|
||||
|
||||
@ApiParam("条码")
|
||||
public String sn;
|
||||
|
||||
@ApiParam(value = "ERP单号")
|
||||
private String erpSrcNo;
|
||||
|
||||
@ApiParam(value = "客户编号")
|
||||
private String custNo;
|
||||
|
||||
@ApiParam(value = "单据状态")
|
||||
public Integer orderStatus;
|
||||
|
||||
@ApiParam(value = "库存移动单状态")
|
||||
public Integer itemStatus;
|
||||
|
||||
@ApiParam(value = "包装编号")
|
||||
private String packageNo;
|
||||
|
||||
@ApiParam("集装箱号")
|
||||
private String containerNo;
|
||||
|
||||
@ApiParam("产地")
|
||||
private String productPlace;
|
||||
|
||||
@ApiParam("托盘重量")
|
||||
private Double packageWeight;
|
||||
|
||||
@ApiParam(value = "客户名称")
|
||||
public String custNameRdd;
|
||||
|
||||
@ApiParam(value = "业务类型")
|
||||
public Integer busiType;
|
||||
|
||||
@ApiParam(value = "交易类型代码")
|
||||
private String transTypeCode;
|
||||
|
||||
@ApiParam(value = "物料号")
|
||||
public String partNo;
|
||||
|
||||
@ApiParam(value = "物料号")
|
||||
public String partNameRdd;
|
||||
|
||||
@ApiParam(value = "客户地址")
|
||||
private String custAddr;
|
||||
|
||||
@ApiParam(value = "客户联系人")
|
||||
private String custOwner;
|
||||
|
||||
@ApiParam(value = "客户电话号码")
|
||||
private String custTel;
|
||||
|
||||
@ApiParam(value = "是否集装箱号")
|
||||
private Integer isContainer;
|
||||
|
||||
@ApiParam("移库单号集合")
|
||||
private List<String> orderNoList;
|
||||
|
||||
@ApiParam("库存移动单号集合")
|
||||
private List<String> moveNoList;
|
||||
|
||||
@ApiParam("库存移动单条码集合")
|
||||
private List<WmsMoveSn> moveSnList;
|
||||
|
||||
@ApiParam("库存条码集合")
|
||||
private List<WmsStockSn> stockSnList;
|
||||
|
||||
@ApiParam(value = "仓库代码")
|
||||
private String whNo;
|
||||
|
||||
@ApiParam(value = "存储区编号")
|
||||
private String zoneNo;
|
||||
|
||||
@ApiParam(value = "库位代码")
|
||||
private String locateNo;
|
||||
|
||||
@ApiParam(value = "客户发往地名称")
|
||||
private String flagName;
|
||||
|
||||
@ApiParam(value = "客户发往地代码")
|
||||
private String flagNo;
|
||||
|
||||
@ApiParam(value = "是否绑定发运")
|
||||
private Integer isBindingShip = WmsEnumUtil.TRUE_OR_FALSE.FALSE.getValue();
|
||||
|
||||
public WmsGcdcContainerModel() {
|
||||
}
|
||||
|
||||
public WmsGcdcContainerModel(Long id, String orderNo, String moveNo, String erpSrcNo, String custNo,
|
||||
Integer orderStatus, String createDatetime, String createUser) {
|
||||
this.id = id;
|
||||
this.orderNo = orderNo;
|
||||
this.moveNo = moveNo;
|
||||
this.erpSrcNo = erpSrcNo;
|
||||
this.custNo = custNo;
|
||||
this.orderStatus = orderStatus;
|
||||
this.createDatetime = createDatetime;
|
||||
this.createUser = createUser;
|
||||
}
|
||||
|
||||
public WmsGcdcContainerModel(Long id, String orderNo, String moveNo, String erpSrcNo, String custNo,
|
||||
Integer itemStatus, String createDatetime, String createUser, Integer busiType) {
|
||||
this.id = id;
|
||||
this.orderNo = orderNo;
|
||||
this.moveNo = moveNo;
|
||||
this.erpSrcNo = erpSrcNo;
|
||||
this.custNo = custNo;
|
||||
this.itemStatus = itemStatus;
|
||||
this.createDatetime = createDatetime;
|
||||
this.createUser = createUser;
|
||||
this.busiType = busiType;
|
||||
}
|
||||
|
||||
public WmsGcdcContainerModel(Long id, String orderNo, String packageNo, Double packageWeight, String custNo, String partNo, String flagNo) {
|
||||
this.id = id;
|
||||
this.orderNo = orderNo;
|
||||
this.packageNo = packageNo;
|
||||
this.packageWeight = packageWeight;
|
||||
this.custNo = custNo;
|
||||
this.partNo = partNo;
|
||||
this.flagNo = flagNo;
|
||||
}
|
||||
|
||||
public WmsGcdcContainerModel(Long id, String organizeCode, Double packageWeight, String packageNo, String zoneNo,
|
||||
String locateNo, String whNo, String partNo, String partNameRdd, String custNo, String flagNo) {
|
||||
this.id = id;
|
||||
this.organizeCode = organizeCode;
|
||||
this.packageWeight = packageWeight;
|
||||
this.packageNo = packageNo;
|
||||
this.zoneNo = zoneNo;
|
||||
this.locateNo = locateNo;
|
||||
this.whNo = whNo;
|
||||
this.partNo = partNo;
|
||||
this.partNameRdd = partNameRdd;
|
||||
this.custNo = custNo;
|
||||
this.flagNo = flagNo;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue