解决冲突
commit
30608f886b
@ -0,0 +1,66 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
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;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :MES_JIT发运队列
|
||||||
|
* @Reference :
|
||||||
|
* @Author : qianhausheng
|
||||||
|
* @CreateDate : 2020-03-06 10:16 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_SHIPPING")
|
||||||
|
@Api("MES_JIT发运队列")
|
||||||
|
public class MesQueueShipping extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 655875369308414110L;
|
||||||
|
|
||||||
|
@Column(name = "JIT_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jitNo;
|
||||||
|
|
||||||
|
@Column(name = "PROD_CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String prodCfgCode;
|
||||||
|
|
||||||
|
@Column(name = "VIN_CODE")
|
||||||
|
@ApiParam("vin")
|
||||||
|
private String vinCode;
|
||||||
|
|
||||||
|
@Column(name = "CUST_FLAG_NO")
|
||||||
|
@ApiParam("客户标识号")
|
||||||
|
private String custFlagNo;
|
||||||
|
|
||||||
|
@Column(name = "SEQ")
|
||||||
|
@ApiParam("排序号")
|
||||||
|
private Double seq;
|
||||||
|
|
||||||
|
@Column(name = "STATUS")
|
||||||
|
@ApiParam("状态")
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
@Column(name = "CUST_CODE")
|
||||||
|
@ApiParam("客户代码")
|
||||||
|
private String custCode;
|
||||||
|
|
||||||
|
@Column(name = "CUST_PLANT_CODE")
|
||||||
|
@ApiParam("客户产线代码")
|
||||||
|
private String custPlantCode;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,73 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
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;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :MES_JIT发运队列明细
|
||||||
|
* @Reference :
|
||||||
|
* @Author : qianhausheng
|
||||||
|
* @CreateDate : 2020-03-06 10:16 上午
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_QUEUE_SHIPPING_DETAIL")
|
||||||
|
@Api("MES_JIT发运队列明细")
|
||||||
|
public class MesQueueShippingDetail extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1442091799346314190L;
|
||||||
|
|
||||||
|
@Column(name = "JIT_NO")
|
||||||
|
@ApiParam("队列编号")
|
||||||
|
private String jitNo;
|
||||||
|
|
||||||
|
@Column(name = "PROD_CFG_CODE")
|
||||||
|
@ApiParam("配置代码")
|
||||||
|
private String prodCfgCode;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NAME_RDD")
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
private String partNameRdd;
|
||||||
|
|
||||||
|
@Column(name = "status")
|
||||||
|
@ApiParam("状态")
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
@Column(name="SERIAL_NUMBER")
|
||||||
|
@ApiParam("过程条码")
|
||||||
|
private String serialNumber;
|
||||||
|
|
||||||
|
@Column(name = "QUEUE_GROUP_NO")
|
||||||
|
@ApiParam("分组队列编号")
|
||||||
|
private String queueGroupNo;
|
||||||
|
|
||||||
|
@Column(name = "GROUP_NO")
|
||||||
|
@ApiParam("组内编号")
|
||||||
|
private Integer groupNo;
|
||||||
|
|
||||||
|
@Column(name = "GROUP_SEQ")
|
||||||
|
@ApiParam("分组序号")
|
||||||
|
private String groupSeq;
|
||||||
|
|
||||||
|
@Column(name = "qty")
|
||||||
|
@ApiParam("数量")
|
||||||
|
private Double qty;
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 产品流程配置Model
|
||||||
|
* @Reference :
|
||||||
|
* @Author : adair
|
||||||
|
* @CreateDate : 2020-4-2
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class MesRouteCfgModel {
|
||||||
|
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam("产品生产类型")
|
||||||
|
private String pptCode;
|
||||||
|
|
||||||
|
@ApiParam("工作中心代码")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("流程代码")
|
||||||
|
private String routeCode;
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 产品流程配置参数Model
|
||||||
|
* @Reference :
|
||||||
|
* @Author : adair
|
||||||
|
* @CreateDate : 2020-4-2
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class MesRouteCfgParamModel {
|
||||||
|
|
||||||
|
@ApiParam("工序代码")
|
||||||
|
private String processCode;
|
||||||
|
|
||||||
|
@ApiParam("是否执行 1=是 2=否")
|
||||||
|
private Integer isActive;
|
||||||
|
|
||||||
|
List<MesRouteCfgStepModel> stepModelList;
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 产品流程配置Model
|
||||||
|
* @Reference :
|
||||||
|
* @Author : adair
|
||||||
|
* @CreateDate : 2020-4-2
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class MesRouteCfgStepModel {
|
||||||
|
|
||||||
|
@ApiParam("工步代码")
|
||||||
|
private String stepCode;
|
||||||
|
|
||||||
|
List<MesRouteCfgModel> routeCfgModelList;
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||||
|
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 : jason.niu
|
||||||
|
* @CreateDate : 2020-03-29
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="WMS_DOCK")
|
||||||
|
@Api("道口预约信息")
|
||||||
|
public class WmsDock extends BaseBean {
|
||||||
|
@Column(name="DOCK_CODE")
|
||||||
|
@ApiParam("道口代码")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String dockCode;
|
||||||
|
|
||||||
|
@Column(name="DOCK_ADDRESS")
|
||||||
|
@ApiParam("道口发运地址")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String dockAddress;
|
||||||
|
|
||||||
|
@Column(name="DOCK_DESC")
|
||||||
|
@ApiParam("道口发运地址描述")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String dockDesc;
|
||||||
|
|
||||||
|
@Column(name="DOCK_TYPE")
|
||||||
|
@ApiParam("道口类型")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String dockType;
|
||||||
|
}
|
@ -0,0 +1,72 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||||
|
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 : jason.niu
|
||||||
|
* @CreateDate : 2020-03-29
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="WMS_DOCK_ORDER_INFO")
|
||||||
|
@Api("道口预约信息")
|
||||||
|
public class WmsDockOrderInfo extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="DOCK_CODE")
|
||||||
|
@ApiParam("道口代码")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String dockCode;
|
||||||
|
|
||||||
|
@Column(name="ORDER_DATE")
|
||||||
|
@ApiParam("预约日期")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.DATETIME)
|
||||||
|
private String orderDate;
|
||||||
|
|
||||||
|
@Column(name="WINDOW_TIME")
|
||||||
|
@ApiParam("窗口时间")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.DATETIME)
|
||||||
|
private String windowTime;
|
||||||
|
|
||||||
|
@Column(name="ORDER_STATUS")
|
||||||
|
@ApiParam("预约状态")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "DOCK_ORDER_STATUS")
|
||||||
|
private Integer orderStatus;
|
||||||
|
|
||||||
|
@Column(name="SUPPLIER_CODE")
|
||||||
|
@ApiParam("供应商编码")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String supplierCode;
|
||||||
|
|
||||||
|
@Column(name="CAR_NO")
|
||||||
|
@ApiParam("车辆编号")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||||
|
private String carNo;
|
||||||
|
|
||||||
|
@Column(name="DRIVER_NAME")
|
||||||
|
@ApiParam("驾驶员")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||||
|
private String driverName;
|
||||||
|
|
||||||
|
@Column(name="ORDER_NO")
|
||||||
|
@ApiParam("单据号")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String orderNo;
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||||
|
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 : jason.niu
|
||||||
|
* @CreateDate : 2020-03-29
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="WMS_DOCK_WINDOW_TIME")
|
||||||
|
@Api("道口窗口时间")
|
||||||
|
public class WmsDockWindowTime extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name="DOCK_CODE")
|
||||||
|
@ApiParam("道口代码")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT, isRequire = 2)
|
||||||
|
private String dockCode;
|
||||||
|
|
||||||
|
@Column(name="WINDOW_TIME")
|
||||||
|
@ApiParam("窗口时间")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.DATETIME)
|
||||||
|
private String windowTime;
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||||
|
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.Index;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 拉动规则实体
|
||||||
|
* @Author Jason
|
||||||
|
* @Date 2020-03-20
|
||||||
|
* @ModifyDate 2020-03-20
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "WMS_PULL_RULE")
|
||||||
|
@Api("拉动规则")
|
||||||
|
public class WmsPullRule extends BaseBean {
|
||||||
|
@Column(name = "PULL_WAY")
|
||||||
|
@ApiParam(value = "拉动类型", example = "10")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "PULL_WAY_STATUS")
|
||||||
|
private Integer pullWay;
|
||||||
|
|
||||||
|
@Column(name = "CONTAIN_UNFINISH_ORDER")
|
||||||
|
@ApiParam(value = "考虑未完成的移库单", example = "0")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, isRequire = 2, entityName = "TRUE_OR_FALSE")
|
||||||
|
private Integer containUnfinishOrder;
|
||||||
|
|
||||||
|
@Column(name = "CONTAIN_EXIST_PERIOD")
|
||||||
|
@ApiParam(value = "考虑现有库存", example = "0")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, isRequire = 2, entityName = "TRUE_OR_FALSE")
|
||||||
|
private Integer containExistStock;
|
||||||
|
|
||||||
|
@Column(name = "TAIL_QTY_MODE")
|
||||||
|
@ApiParam(value = "尾数计算方式", example = "0")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, isRequire = 2, entityName = "TAIL_QTY_MODE")
|
||||||
|
private Integer tailQtyMode;
|
||||||
|
}
|
@ -0,0 +1,91 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
||||||
|
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.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 运输规则表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : puxiao.liao
|
||||||
|
* @CreateDate : 2020-03-06 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "WMS_TRANSPORT_RULE")
|
||||||
|
@Api("运输规则表")
|
||||||
|
public class WmsTransportRule extends BaseBean {
|
||||||
|
private static final long serialVersionUID = 6120257805546343124L;
|
||||||
|
|
||||||
|
@Column(name = "COMMAND_TYPE")
|
||||||
|
@ApiParam(value = "指令类型")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.IMPORT_ORDER_TYPE.class, refForeignKey = "value", value = "description")
|
||||||
|
private String commandType;
|
||||||
|
|
||||||
|
@Column(name = "BUSI_TYPE")
|
||||||
|
@ApiParam("业务类型")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.OUT_MOVEMENT_BUSI_TYPE.class, refForeignKey = "value", value = "description")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "OUT_MOVEMENT_BUSI_TYPE")
|
||||||
|
public Integer busiType;
|
||||||
|
|
||||||
|
@Column(name = "BUSI_SCENE_TYPE")
|
||||||
|
@ApiParam("业务场景")
|
||||||
|
//@AnnoOutputColumn(refClass = WmsEnumUtil.BUSI_SCENE_TYPE.class, refForeignKey = "value", value = "description")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "BUSI_SCENE_TYPE")
|
||||||
|
public Integer busiSceneType;
|
||||||
|
|
||||||
|
|
||||||
|
@Column(name = "SRC_AREA_NO")
|
||||||
|
@ApiParam("发货库存地")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
public String srcAreaNo;
|
||||||
|
|
||||||
|
|
||||||
|
@Column(name = "DEST_AREA_NO")
|
||||||
|
@ApiParam("目标库存地")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
public String destAreaNo;
|
||||||
|
|
||||||
|
@Column(name = "OUT_VENDOR_NO")
|
||||||
|
@ApiParam("委外供应商编码")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
public String outVendorNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
public String partNo;
|
||||||
|
|
||||||
|
@Column(name = "CUST_NO")
|
||||||
|
@ApiParam("客户代码")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
public String custNo;
|
||||||
|
|
||||||
|
@Column(name = "IS_TRANSPORT")
|
||||||
|
@ApiParam("是否安排运输")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description")
|
||||||
|
@DynamicField(webFieldType = WmsEnumUtil.FIELD_TYPE.SELECT, entityName = "TRUE_OR_FALSE")
|
||||||
|
public int isTransport;
|
||||||
|
|
||||||
|
@Column(name = "REMARK",length = 255)
|
||||||
|
@ApiParam("备注")
|
||||||
|
public String remark;
|
||||||
|
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
@Transient
|
||||||
|
public List<String> partNoLst;
|
||||||
|
}
|
@ -0,0 +1,32 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description 道口看板数据模型
|
||||||
|
* @author jason.niu
|
||||||
|
* @date 2020/03/31
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Api("道口看板数据模型")
|
||||||
|
public class DockDashboardModel {
|
||||||
|
@ApiParam("预约时间")
|
||||||
|
private String orderDate;
|
||||||
|
|
||||||
|
@ApiParam("预约状态")
|
||||||
|
private Integer appointmentStatus;
|
||||||
|
|
||||||
|
@ApiParam("供应商编码")
|
||||||
|
private String supplierCode;
|
||||||
|
|
||||||
|
@ApiParam("单号")
|
||||||
|
private String orderNo;
|
||||||
|
|
||||||
|
@ApiParam("车牌号")
|
||||||
|
private String carNo;
|
||||||
|
|
||||||
|
@ApiParam("驾驶员")
|
||||||
|
private String driverName;
|
||||||
|
}
|
@ -0,0 +1,54 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description 外部拉动数据结构
|
||||||
|
* @author jason.niu
|
||||||
|
* @date 2020/03/25
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Api("外部拉动单模型")
|
||||||
|
public class WmsPullOrderModel {
|
||||||
|
|
||||||
|
@ApiParam("工厂代码")
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam("产线")
|
||||||
|
private String lineNo;
|
||||||
|
|
||||||
|
@ApiParam("仓库代码")
|
||||||
|
public String WhNo;
|
||||||
|
|
||||||
|
@ApiParam("存储区代码")
|
||||||
|
public String ZoneNo;
|
||||||
|
|
||||||
|
@ApiParam("目标库位代码")
|
||||||
|
public String destLocateNo;
|
||||||
|
|
||||||
|
@ApiParam("库位")
|
||||||
|
private String locateNo;
|
||||||
|
|
||||||
|
@ApiParam("物料编码")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
public String partName;
|
||||||
|
|
||||||
|
@ApiParam("源仓库代码")
|
||||||
|
public String srcWhNo;
|
||||||
|
|
||||||
|
@ApiParam("源存储区代码")
|
||||||
|
public String srcZoneNo;
|
||||||
|
|
||||||
|
@ApiParam("数量")
|
||||||
|
private Double qty;
|
||||||
|
|
||||||
|
@ApiParam("单位")
|
||||||
|
public String unit;
|
||||||
|
|
||||||
|
@ApiParam("批次")
|
||||||
|
public String lotNo;
|
||||||
|
}
|
@ -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.WmsDockOrderInfo;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :道口预约信息
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-03-29
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsDockOrderInfoRepository extends BaseRepository<WmsDockOrderInfo, 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.WmsDock;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :道口
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-03-30
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsDockRepository extends BaseRepository<WmsDock, 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.WmsDockWindowTime;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :道口窗口时间
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-03-29
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsDockWindowTimeRepository extends BaseRepository<WmsDockWindowTime, 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.WmsPullRule;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :拉动规则Repository的方法接口
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-03-23 15:38
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsPullRuleRepository extends BaseRepository<WmsPullRule, 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.WmsTransportRule;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 运输规则dao层
|
||||||
|
* @Reference :
|
||||||
|
* @Author : puxiao.liao
|
||||||
|
* @CreateDate : 2020-03-27 10:30
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsTransportRuleRepository extends BaseRepository<WmsTransportRule, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue