Merge remote-tracking branch 'origin/dev' into dev
commit
4ec71681de
@ -0,0 +1,52 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.aps.annotation.FieldAnnotation;
|
||||||
|
import cn.estsh.i3plus.pojo.aps.common.BeanRelation;
|
||||||
|
import cn.estsh.i3plus.pojo.aps.holders.EBaseOrder;
|
||||||
|
import cn.estsh.i3plus.pojo.aps.holders.EMaterialDeliveryPromise;
|
||||||
|
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 javax.persistence.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :物料交期承诺
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-06-11
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Entity
|
||||||
|
@Table(name = "APS_MATERIAL_DELIVERY_PROMISE")
|
||||||
|
@Api("物料")
|
||||||
|
public class MaterialDeliveryPromise extends BaseBean {
|
||||||
|
@Column(name="QTY")
|
||||||
|
@ApiParam(value ="到货数量")
|
||||||
|
private Double count;
|
||||||
|
|
||||||
|
@Column(name="DATE_TIME")
|
||||||
|
@ApiParam(value ="到货日期")
|
||||||
|
private Date dateTime;
|
||||||
|
|
||||||
|
@Column(name="MATERIAL_ID")
|
||||||
|
@ApiParam(value ="物料")
|
||||||
|
@FieldAnnotation(relation = "Material", notEmpty = true)
|
||||||
|
private Long materialId;
|
||||||
|
|
||||||
|
public Material getMaterial() {
|
||||||
|
return BeanRelation.get(this, EMaterialDeliveryPromise.Material);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMaterial(Material material) {
|
||||||
|
this.materialId = material != null ? material.getId() : 0l;
|
||||||
|
BeanRelation.set(this, EMaterialDeliveryPromise.Material, material);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.holders;
|
||||||
|
|
||||||
|
public enum EMaterialDeliveryPromise {
|
||||||
|
Material,
|
||||||
|
}
|
@ -0,0 +1,36 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 物料交期分析表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-06-11
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class MaterialDeliveryAnalyze {
|
||||||
|
|
||||||
|
private String orderCode;
|
||||||
|
|
||||||
|
private String orderName;
|
||||||
|
|
||||||
|
private String materialCode;
|
||||||
|
|
||||||
|
private String materialName;
|
||||||
|
|
||||||
|
private String labelName;
|
||||||
|
|
||||||
|
private String labelColor;
|
||||||
|
|
||||||
|
private Date requireDate;
|
||||||
|
|
||||||
|
private Date arrivalDate;
|
||||||
|
|
||||||
|
private Double requireCount;
|
||||||
|
|
||||||
|
private Double count;
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.aps.bean.MaterialDeliveryPromise;
|
||||||
|
import org.springframework.data.repository.CrudRepository;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface MaterialDeliveryPromiseRepository extends CrudRepository<MaterialDeliveryPromise, Long> {
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<Class name="MaterialDeliveryPromise">
|
||||||
|
<Relation field="Material" name="Material" type="MULTI_TO_ONE">
|
||||||
|
</Relation>
|
||||||
|
</Class>
|
@ -0,0 +1,39 @@
|
|||||||
|
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.Column;
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/6/7 15:20
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name = "MES_SUB_PART")
|
||||||
|
@Api("数据同步死信")
|
||||||
|
public class MesSubPart extends BaseBean implements Serializable {
|
||||||
|
private static final long serialVersionUID = 4636507477301700549L;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("零件号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "SUB_PART_NO")
|
||||||
|
@ApiParam("替代料")
|
||||||
|
private String subPartNo;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,64 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PlcEquStatusModel implements Serializable {
|
||||||
|
|
||||||
|
// 主站/从站
|
||||||
|
@ApiParam("站位")
|
||||||
|
private String stationPosition;
|
||||||
|
|
||||||
|
// 站位IP
|
||||||
|
@ApiParam("IP地址")
|
||||||
|
private String ipAddress;
|
||||||
|
|
||||||
|
// IP状态 -- 连接/断开
|
||||||
|
@ApiParam("IP状态")
|
||||||
|
private Integer ipStatus;
|
||||||
|
|
||||||
|
// 电检设备名称
|
||||||
|
@ApiParam("电检设备名称")
|
||||||
|
private String electricalEqu;
|
||||||
|
|
||||||
|
// 电检设备状态哦 -- 连接/断开
|
||||||
|
@ApiParam("电检设备状态")
|
||||||
|
private Integer electricalEquStatus;
|
||||||
|
|
||||||
|
// 产线状态
|
||||||
|
@ApiParam("产线状态")
|
||||||
|
private Integer workCenterStatus;
|
||||||
|
|
||||||
|
@ApiParam("停机类型")
|
||||||
|
private Integer stopType;
|
||||||
|
|
||||||
|
@ApiParam("产品条码")
|
||||||
|
private String productSn;
|
||||||
|
|
||||||
|
@ApiParam("过程条码")
|
||||||
|
private String serialNumber;
|
||||||
|
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
private String partName;
|
||||||
|
|
||||||
|
@ApiParam("工作中心代码")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("工作单元代码")
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
@ApiParam("停机开始时间")
|
||||||
|
private String stopStartTime;
|
||||||
|
|
||||||
|
@ApiParam("停机结束时间")
|
||||||
|
private String stopEndTime;
|
||||||
|
|
||||||
|
@ApiParam("停机原因")
|
||||||
|
private String stopReason;
|
||||||
|
}
|
@ -0,0 +1,89 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Author: jokelin
|
||||||
|
* @Date: 2020/6/8 1:22 下午
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ScatterPartProdCfgModel {
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam("配置编号")
|
||||||
|
private String cfgId;
|
||||||
|
|
||||||
|
@ApiParam("工作中心代码")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("工作单元代码")
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
@ApiParam("车型标志值")
|
||||||
|
private String modelFalgValue;
|
||||||
|
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
private String partName;
|
||||||
|
|
||||||
|
@ApiParam("等级代码")
|
||||||
|
private String gradeCode;
|
||||||
|
|
||||||
|
@ApiParam("颜色代码")
|
||||||
|
private String colorCode;
|
||||||
|
|
||||||
|
@ApiParam("标志位")
|
||||||
|
private Integer partFlagLocation;
|
||||||
|
|
||||||
|
@ApiParam("标志值")
|
||||||
|
private String partFlagValue;
|
||||||
|
|
||||||
|
@ApiParam("防错码")
|
||||||
|
private String pokeYokeFix;
|
||||||
|
|
||||||
|
@ApiParam("项目代码")
|
||||||
|
private String prodCfgTypeCode;
|
||||||
|
|
||||||
|
@ApiParam("产品位置代码")
|
||||||
|
private String produceCtgyCode;
|
||||||
|
|
||||||
|
@ApiParam("确认扫描次数")
|
||||||
|
private Integer checkScanCount;
|
||||||
|
|
||||||
|
@ApiParam("组合码发送顺序")
|
||||||
|
private Integer sendSeq;
|
||||||
|
|
||||||
|
@ApiParam("黄枪规则")
|
||||||
|
private Integer yellowGunRule;
|
||||||
|
|
||||||
|
@ApiParam("是否截至顺序号")
|
||||||
|
private Integer isEndSeq;
|
||||||
|
|
||||||
|
@ApiParam("多媒体插头数量")
|
||||||
|
private Double multimediaPlusQty;
|
||||||
|
|
||||||
|
public ScatterPartProdCfgModel() {}
|
||||||
|
|
||||||
|
public ScatterPartProdCfgModel(Long id, String workCenterCode, String workCellCode, String partNo, String partName
|
||||||
|
, String gradeCode, String colorCode, String prodCfgTypeCode, String produceCtgyCode, Double multimediaPlusQty) {
|
||||||
|
this.id = id;
|
||||||
|
this.workCenterCode = workCenterCode;
|
||||||
|
this.workCellCode = workCellCode;
|
||||||
|
this.partNo = partNo;
|
||||||
|
this.partName = partName;
|
||||||
|
this.gradeCode = gradeCode;
|
||||||
|
this.colorCode = colorCode;
|
||||||
|
this.prodCfgTypeCode = prodCfgTypeCode;
|
||||||
|
this.produceCtgyCode = produceCtgyCode;
|
||||||
|
this.multimediaPlusQty = multimediaPlusQty;
|
||||||
|
}
|
||||||
|
}
|
@ -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.MesEquipment;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jack.jia
|
||||||
|
* @CreateDate : 2019-04-02
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface EquOperationStatusMonitorRepository extends BaseRepository<MesEquipment, Long> {
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesSubPart;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/6/7 15:23
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Repository
|
||||||
|
public interface MesSubPartRepository extends BaseRepository<MesSubPart, Long> {
|
||||||
|
}
|
@ -0,0 +1,54 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.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;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangjie
|
||||||
|
* @date 2020/2/12 17:41
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name = "IF_PICK_DATA")
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Api("IF_拣货数据")
|
||||||
|
public class IfPickData extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -1057633269490937118L;
|
||||||
|
|
||||||
|
@Column(name = "AREA_NO")
|
||||||
|
@ApiParam("区域代码")
|
||||||
|
private String areaNo;
|
||||||
|
|
||||||
|
@Column(name = "SECTION_NO")
|
||||||
|
@ApiParam("区段编号")
|
||||||
|
private String sectionNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam("物料编号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "QTY")
|
||||||
|
@ApiParam("拣货数量")
|
||||||
|
private Integer qty;
|
||||||
|
|
||||||
|
@Column(name = "SYNC_FLAG")
|
||||||
|
@ApiParam("同步标识")
|
||||||
|
private Integer syncFlag;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.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;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/2/14 11:18
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@Table(name = "PTL_METHOD")
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Api("方法清单")
|
||||||
|
public class PtlMethod extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1208980343927922927L;
|
||||||
|
|
||||||
|
@Column(name = "METHOD_CODE")
|
||||||
|
@ApiParam("方法代码")
|
||||||
|
private String methodCode;
|
||||||
|
|
||||||
|
@Column(name = "METHOD_NAME")
|
||||||
|
@ApiParam("方法描述")
|
||||||
|
private String methodName;
|
||||||
|
|
||||||
|
@Column(name = "CALL_CLASS")
|
||||||
|
@ApiParam("实现类")
|
||||||
|
private String callClass;
|
||||||
|
|
||||||
|
@Column(name = "METHOD_TYPE")
|
||||||
|
@ApiParam("方法类型")
|
||||||
|
private Integer methodType;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.ptl.bean.IfPickData;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangjie
|
||||||
|
* @date 2020/2/12 17:41
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
|
||||||
|
public interface IfPickDataRepository extends BaseRepository<IfPickData, Long> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.ptl.bean.PtlAreaActorAction;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/2/12 17:41
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
|
||||||
|
public interface PtlAreaActorActionRepository extends BaseRepository<PtlAreaActorAction, Long> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.ptl.bean.PtlMethod;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/2/12 17:41
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
|
||||||
|
public interface PtlMethodRepository extends BaseRepository<PtlMethod, Long> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,64 @@
|
|||||||
|
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 : COI对照表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jimmy.zeng
|
||||||
|
* @CreateDate : 2020-06-09 16:59
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@Table(name="WMS_COI")
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Api(value="COI对照表",description = "COI对照表")
|
||||||
|
public class WmsCoi extends BaseBean {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -8298385889006722335L;
|
||||||
|
|
||||||
|
@Column(name = "PART_NO")
|
||||||
|
@ApiParam(value = "物料编号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@Column(name = "PART_NAME")
|
||||||
|
@ApiParam(value = "物料名称")
|
||||||
|
private String partName;
|
||||||
|
|
||||||
|
@Column(name = "PART_VOL")
|
||||||
|
@ApiParam(value = "体积")
|
||||||
|
private Double partVol;
|
||||||
|
|
||||||
|
@Column(name = "TRUNROUND_RATE")
|
||||||
|
@ApiParam(value = "周转率")
|
||||||
|
private Double trunroundRate;
|
||||||
|
|
||||||
|
@Column(name = "COI_VALUE")
|
||||||
|
@ApiParam(value = "COI值")
|
||||||
|
private Double coiValue;
|
||||||
|
|
||||||
|
@Column(name = "LAST_UPDATE_DATE")
|
||||||
|
@ApiParam(value = "末次更新日期")
|
||||||
|
private String lastUpdateDate;
|
||||||
|
|
||||||
|
@Column(name = "FREQUENCY")
|
||||||
|
@ApiParam(value = "频次")
|
||||||
|
private Double frequency;
|
||||||
|
|
||||||
|
@Column(name = "LOCATE_NO")
|
||||||
|
@ApiParam(value = "库位")
|
||||||
|
private String locateNo;
|
||||||
|
}
|
@ -1,358 +0,0 @@
|
|||||||
package cn.estsh.i3plus.pojo.wms.bean;
|
|
||||||
|
|
||||||
|
|
||||||
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
||||||
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.ColumnDefault;
|
|
||||||
import org.hibernate.annotations.DynamicInsert;
|
|
||||||
import org.hibernate.annotations.DynamicUpdate;
|
|
||||||
|
|
||||||
import javax.persistence.Column;
|
|
||||||
import javax.persistence.Entity;
|
|
||||||
import javax.persistence.Table;
|
|
||||||
import javax.persistence.Transient;
|
|
||||||
import javax.persistence.Version;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description : 车辆信息明细
|
|
||||||
* @Reference :
|
|
||||||
* @Author : qianhuasheng
|
|
||||||
* @CreateDate : 2019-12-06 15:58
|
|
||||||
* @Modify:
|
|
||||||
**/
|
|
||||||
@Data
|
|
||||||
@Entity
|
|
||||||
@DynamicInsert
|
|
||||||
@DynamicUpdate
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
@Table(name="WMS_TMS_SHIPPING_EXT_DETAIL")
|
|
||||||
@Api("装车单信息明细")
|
|
||||||
public class WmsTmsShippingExtDetail extends BaseBean {
|
|
||||||
private static final long serialVersionUID = -4800308354250386102L;
|
|
||||||
|
|
||||||
@Column(name="MOVE_NO")
|
|
||||||
@ApiParam("装车单")
|
|
||||||
public String moveNo;
|
|
||||||
|
|
||||||
@Column(name = "PART_NO")
|
|
||||||
@ApiParam("物料编码")
|
|
||||||
public String partNo;
|
|
||||||
|
|
||||||
@Column(name = "PART_NAME_RDD")
|
|
||||||
@ApiParam("物料名称")
|
|
||||||
public String partNameRdd;
|
|
||||||
|
|
||||||
@Column(name = "ITEM")
|
|
||||||
@ApiParam("行号")
|
|
||||||
public String item;
|
|
||||||
|
|
||||||
@Column(name = "QTY", columnDefinition = "decimal(18,8)")
|
|
||||||
@ColumnDefault("0")
|
|
||||||
@ApiParam(value = "需求数量", example = "0")
|
|
||||||
public Double qty;
|
|
||||||
|
|
||||||
@Column(name = "UNIT")
|
|
||||||
@ApiParam("单位")
|
|
||||||
public String unit;
|
|
||||||
|
|
||||||
@Column(name = "ORDER_NO")
|
|
||||||
@ApiParam("订单号")
|
|
||||||
public String orderNo;
|
|
||||||
|
|
||||||
@Column(name = "SRC_WH_NO")
|
|
||||||
@ApiParam("源仓库代码")
|
|
||||||
public String srcWhNo;
|
|
||||||
|
|
||||||
@Column(name = "SRC_ZONE_NO")
|
|
||||||
@ApiParam("源存储区代码")
|
|
||||||
public String srcZoneNo;
|
|
||||||
|
|
||||||
@Column(name = "SRC_LOCATE_NO")
|
|
||||||
@ApiParam("源库位代码")
|
|
||||||
public String srcLocateNo;
|
|
||||||
|
|
||||||
@Column(name = "DEST_WH_NO")
|
|
||||||
@ApiParam("目标仓库代码")
|
|
||||||
public String destWhNo;
|
|
||||||
|
|
||||||
@Column(name = "DEST_ZONE_NO")
|
|
||||||
@ApiParam("目标存储区代码")
|
|
||||||
public String destZoneNo;
|
|
||||||
|
|
||||||
@Column(name = "DEST_LOCATE_NO")
|
|
||||||
@ApiParam("目标库位代码")
|
|
||||||
public String destLocateNo;
|
|
||||||
|
|
||||||
@Column(name = "PRINT_QTY", columnDefinition = "decimal(18,8)")
|
|
||||||
@ColumnDefault("0")
|
|
||||||
@ApiParam(value = "条码打印数量", example = "1")
|
|
||||||
private Double printQty;
|
|
||||||
|
|
||||||
@Column(name = "PLAN_DATE")
|
|
||||||
@ApiParam(value = "计划日期")
|
|
||||||
private String planDate;
|
|
||||||
|
|
||||||
@Column(name = "PLAN_TIME")
|
|
||||||
@ApiParam(value = "计划时间")
|
|
||||||
private String planTime;
|
|
||||||
|
|
||||||
@Column(name = "SRC_NO")
|
|
||||||
@ApiParam(value = "源单号")
|
|
||||||
private String srcNo;
|
|
||||||
/**
|
|
||||||
* 状态:N=正常,C=行取消
|
|
||||||
*/
|
|
||||||
@Column(name = "ITEM_STATUS")
|
|
||||||
@ApiParam(value = "状态", example = "1")
|
|
||||||
@AnnoOutputColumn(refClass = WmsEnumUtil.ORDER_DETAILS_STATUS.class, refForeignKey = "value", value = "description")
|
|
||||||
private Integer itemStatus;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 是否免费:0=计费,1=免费
|
|
||||||
*/
|
|
||||||
@Column(name = "IS_FREE")
|
|
||||||
@ApiParam(value = "是否免费", example = "1")
|
|
||||||
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description")
|
|
||||||
public Integer isFree;
|
|
||||||
|
|
||||||
@Column(name = "REMARK")
|
|
||||||
@ApiParam(value = "操作原因")
|
|
||||||
private String remark;
|
|
||||||
|
|
||||||
@Column(name = "PICK_QTY", columnDefinition = "decimal(18,8)")
|
|
||||||
@ColumnDefault("0")
|
|
||||||
@ApiParam(value = "已拣货数量", example = "1")
|
|
||||||
private Double pickQty;
|
|
||||||
|
|
||||||
@Column(name = "OUT_QTY", columnDefinition = "decimal(18,8)")
|
|
||||||
@ColumnDefault("0")
|
|
||||||
@ApiParam(value = "已出库数量", example = "1")
|
|
||||||
private Double outQty;
|
|
||||||
|
|
||||||
@Column(name = "REC_QTY", columnDefinition = "decimal(18,8)")
|
|
||||||
@ColumnDefault("0")
|
|
||||||
@ApiParam(value = "已收货数量", example = "1")
|
|
||||||
private Double recQty;
|
|
||||||
|
|
||||||
@Column(name = "MOVE_QTY", columnDefinition = "decimal(18,8)")
|
|
||||||
@ColumnDefault("0")
|
|
||||||
@ApiParam(value = "已移库数量", example = "1")
|
|
||||||
private Double moveQty;
|
|
||||||
|
|
||||||
@Column(name = "TASK_GENERATE_QTY", columnDefinition = "decimal(18,8)")
|
|
||||||
@ColumnDefault("0")
|
|
||||||
@ApiParam(value = "任务生成数量", example = "1")
|
|
||||||
private Double taskGenerateQty;
|
|
||||||
|
|
||||||
@Column(name = "SRC_AREA_NO")
|
|
||||||
@ApiParam("源库存地代码")
|
|
||||||
public String srcAreaNo;
|
|
||||||
|
|
||||||
@Column(name = "DEST_AREA_NO")
|
|
||||||
@ApiParam("目的库存地代码")
|
|
||||||
public String destAreaNo;
|
|
||||||
|
|
||||||
@Column(name = "LOT_NO")
|
|
||||||
@ApiParam("批次")
|
|
||||||
public String lotNo;
|
|
||||||
|
|
||||||
@Column(name="SRC_ITEM", columnDefinition="varchar(50) default ''",nullable=false)
|
|
||||||
@ApiParam("源单行号")
|
|
||||||
public String srcItem;
|
|
||||||
|
|
||||||
@Column(name = "CUST_ORDER_NO")
|
|
||||||
@ApiParam("客户订单号")
|
|
||||||
public String custOrderNo;
|
|
||||||
|
|
||||||
@Column(name = "ASSIGN_DATE_CODE")
|
|
||||||
@ApiParam(value = "指定生产日期")
|
|
||||||
private String assignDateCode;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("实际批次")
|
|
||||||
private String actualLot;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("实际数量")
|
|
||||||
private Double actualQty;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("推荐批次")
|
|
||||||
private String recommondLot;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("推荐库位")
|
|
||||||
private String recommondLocateNo;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("前端表格编辑使用")
|
|
||||||
private Boolean isSet = false;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("生产日期")
|
|
||||||
public String dateCode;
|
|
||||||
|
|
||||||
@ApiParam(value = "散件移库输入移库数量")
|
|
||||||
@Transient
|
|
||||||
public Double inputMoveQty;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam(value = "标准包装", example = "1")
|
|
||||||
private Double snp;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam(value = "条码总数量", example = "1")
|
|
||||||
private Double detailsSnCount;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam(value = "余数", example = "1")
|
|
||||||
private Double restQty;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("任务状态")
|
|
||||||
@AnnoOutputColumn(refClass = WmsEnumUtil.IS_GENERAL_TASK.class, refForeignKey = "value", value = "description")
|
|
||||||
private Integer isTask;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("主表单据状态")
|
|
||||||
@AnnoOutputColumn(refClass = WmsEnumUtil.MASTER_ORDER_STATUS.class, refForeignKey = "value", value = "description")
|
|
||||||
private Integer orderMasterStatus;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("打印状态")
|
|
||||||
@AnnoOutputColumn(refClass = WmsEnumUtil.PRINT_STATUS.class, refForeignKey = "value", value = "description")
|
|
||||||
private Integer printStatus;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("优先级")
|
|
||||||
private Integer priority;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam(value = "汇总需求数量", example = "0")
|
|
||||||
public Double sumQty;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam(value = "汇总拣货数量", example = "0")
|
|
||||||
public Double sumPickQty;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("执行状态")
|
|
||||||
@AnnoOutputColumn(refClass = WmsEnumUtil.PICKING_EXECUTE_STATUS.class, refForeignKey = "value", value = "description")
|
|
||||||
private Integer executeStatus;
|
|
||||||
|
|
||||||
@Version
|
|
||||||
@Column(name = "LOCK_VERSION")
|
|
||||||
@ApiParam(value = "乐观锁", example = "1")
|
|
||||||
public transient Integer lockVersion;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("移动类型")
|
|
||||||
public Integer moveType;
|
|
||||||
|
|
||||||
@Transient
|
|
||||||
@ApiParam("业务类型")
|
|
||||||
@AnnoOutputColumn(refClass = WmsEnumUtil.OUT_MOVEMENT_BUSI_TYPE.class, refForeignKey = "value", value = "description")
|
|
||||||
public Integer busiType;
|
|
||||||
|
|
||||||
@Column(name = "IS_SN")
|
|
||||||
@ApiParam(value = "条码生成状态", example = "20")
|
|
||||||
public Integer isSn;
|
|
||||||
|
|
||||||
|
|
||||||
public WmsTmsShippingExtDetail () {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public String getRecommondLot() {
|
|
||||||
return recommondLot == null ? "无" : this.recommondLot;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getQty() {
|
|
||||||
return qty == null ? 0D : this.qty.doubleValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getOutQty() {
|
|
||||||
return outQty == null ? 0D : this.outQty.doubleValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getPickQty() {
|
|
||||||
return pickQty == null ? 0D : this.pickQty.doubleValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getActualQty() {
|
|
||||||
return actualQty == null ? 0D : this.actualQty.doubleValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Double getRecQty() {
|
|
||||||
return recQty == null ? 0D : this.recQty.doubleValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getIsTaskVal() {
|
|
||||||
return isTask == null ? 0 : this.isTask.intValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Integer getOrderMasterStatus() {
|
|
||||||
return orderMasterStatus == null ? 0 : this.orderMasterStatus.intValue();
|
|
||||||
}
|
|
||||||
|
|
||||||
public WmsTmsShippingExtDetail(WmsDocMovementDetails docMovementDetails,String moveNo) {
|
|
||||||
this.moveNo = moveNo;
|
|
||||||
this.partNo = docMovementDetails.getPartNo();
|
|
||||||
this.partNameRdd = docMovementDetails.getPartNameRdd();
|
|
||||||
this.item = docMovementDetails.getItem();
|
|
||||||
this.qty =docMovementDetails.getQty();
|
|
||||||
this.unit = docMovementDetails.getUnit();
|
|
||||||
this.orderNo = docMovementDetails.getOrderNo();
|
|
||||||
this.srcWhNo = docMovementDetails.getSrcWhNo();
|
|
||||||
this.srcZoneNo = docMovementDetails.getSrcZoneNo();
|
|
||||||
this.srcLocateNo = docMovementDetails.getSrcLocateNo();
|
|
||||||
this.destWhNo = docMovementDetails.getDestWhNo();
|
|
||||||
this.destZoneNo = docMovementDetails.getDestZoneNo();
|
|
||||||
this.destLocateNo = docMovementDetails.getDestLocateNo();
|
|
||||||
this.printQty = docMovementDetails.getPrintQty();
|
|
||||||
this.planDate = docMovementDetails.getPlanDate();
|
|
||||||
this.planTime = docMovementDetails.getPlanTime();
|
|
||||||
this.srcNo = docMovementDetails.getSrcNo();
|
|
||||||
this.itemStatus = docMovementDetails.getItemStatus();
|
|
||||||
this.isFree = docMovementDetails.getIsFree();
|
|
||||||
this.remark = docMovementDetails.getRemark();
|
|
||||||
this.pickQty = docMovementDetails.getPickQty();
|
|
||||||
this.outQty = docMovementDetails.getOutQty();
|
|
||||||
this.recQty = docMovementDetails.getRecQty();
|
|
||||||
this.moveQty = docMovementDetails.getMoveQty();
|
|
||||||
this.taskGenerateQty = docMovementDetails.getTaskGenerateQty();
|
|
||||||
this.srcAreaNo = docMovementDetails.getSrcAreaNo();
|
|
||||||
this.destAreaNo = docMovementDetails.getDestAreaNo();
|
|
||||||
this.lotNo = docMovementDetails.getLotNo();
|
|
||||||
this.srcItem = docMovementDetails.getSrcItem();
|
|
||||||
this.custOrderNo = docMovementDetails.getCustOrderNo();
|
|
||||||
this.assignDateCode = docMovementDetails.getAssignDateCode();
|
|
||||||
this.actualLot = docMovementDetails.getActualLot();
|
|
||||||
this.actualQty = docMovementDetails.getActualQty();
|
|
||||||
this.recommondLot = docMovementDetails.getRecommondLot();
|
|
||||||
this.recommondLocateNo = docMovementDetails.getRecommondLocateNo();
|
|
||||||
this.isSet = docMovementDetails.getIsSet();
|
|
||||||
this.dateCode = docMovementDetails.getDateCode();
|
|
||||||
this.inputMoveQty = docMovementDetails.getInputMoveQty();
|
|
||||||
this.snp = docMovementDetails.getSnp();
|
|
||||||
this.detailsSnCount = docMovementDetails.getDetailsSnCount();
|
|
||||||
this.restQty = docMovementDetails.getRestQty();
|
|
||||||
this.isTask = docMovementDetails.getIsTask();
|
|
||||||
this.orderMasterStatus = docMovementDetails.getOrderMasterStatus();
|
|
||||||
this.printStatus = docMovementDetails.getPrintStatus();
|
|
||||||
this.priority = docMovementDetails.getPriority();
|
|
||||||
this.sumQty = docMovementDetails.getSumQty();
|
|
||||||
this.sumPickQty = docMovementDetails.getSumPickQty();
|
|
||||||
this.executeStatus = docMovementDetails.getExecuteStatus();
|
|
||||||
this.lockVersion = docMovementDetails.getLockVersion();
|
|
||||||
this.moveType = docMovementDetails.getMoveType();
|
|
||||||
this.busiType = docMovementDetails.getBusiType();
|
|
||||||
this.isSn = docMovementDetails.getIsSn();
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,126 @@
|
|||||||
|
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.CommonEnumUtil;
|
||||||
|
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;
|
||||||
|
import javax.persistence.Transient;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 策略表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jimmy.zeng
|
||||||
|
* @CreateDate : 2020-06-09 16:45
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@Table(name="WMS_TRACTICS")
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Api(value="策略表",description = "策略表")
|
||||||
|
public class WmsTractics extends BaseBean {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -8203200560604263871L;
|
||||||
|
@Column(name="TRACTICS_CODE")
|
||||||
|
@ApiParam(value ="策略代码")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String tracticsCode;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_NAME")
|
||||||
|
@ApiParam(value ="策略名称")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String tracticsName;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_DESC")
|
||||||
|
@ApiParam(value ="策略描述")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String tracticsDesc;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_GRADE")
|
||||||
|
@ApiParam(value ="策略等级")
|
||||||
|
// @AnnoOutputColumn(refClass = WmsEnumUtil.TRACTICS_GRADE.class, refForeignKey = "value", value = "description")
|
||||||
|
// @DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.SELECT, isMultiple = 1, dataSrc = "TRACTICS_GRADE")
|
||||||
|
private Integer tracticsGrade;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_GROUP")
|
||||||
|
@ApiParam(value ="策略组")
|
||||||
|
// @DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.SELECT, isMultiple = 1, dataSrc = "TRACTICS_GROUP")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRACTICS_GROUP.class, refForeignKey = "value", value = "description")
|
||||||
|
private Integer tracticsGroup;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_ITEM")
|
||||||
|
@ApiParam(value ="策略项")
|
||||||
|
// @DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.NUMBER)
|
||||||
|
private Integer tracticsItem;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_PART_GROUP")
|
||||||
|
@ApiParam(value ="策略适用物料组")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.LIST,isRequire = 2, getValWay = CommonEnumUtil.DYNAMIC_FIELD_GET_WAY.OBJ,
|
||||||
|
dataSrc = "cn.estsh.i3plus.pojo.wms.bean.WmsPartGroup",
|
||||||
|
searchColumnName = "partGroupNo,partGroupName", listColumnName = "partGroupNo,partGroupName", explicitColumnName = "partGroupNo")
|
||||||
|
private String tracticsPartGroup;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_ZONE")
|
||||||
|
@ApiParam(value ="策略适用存储区")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.LIST, isRequire = 2, getValWay = CommonEnumUtil.DYNAMIC_FIELD_GET_WAY.OBJ,
|
||||||
|
dataSrc ="cn.estsh.i3plus.pojo.wms.bean.WmsZones",
|
||||||
|
searchColumnName = "zoneNo,zoneName",listColumnName = "zoneNo,zoneName", explicitColumnName = "zoneNo")
|
||||||
|
private String tracticsZone;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_PARAM")
|
||||||
|
@ApiParam(value ="参数")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String tracticsParam;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_START_TIME")
|
||||||
|
@ApiParam(value ="策略生效日期")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.DATETIME)
|
||||||
|
private String tracticsStartTime;
|
||||||
|
|
||||||
|
@Column(name="TRACTICS_END_TIME")
|
||||||
|
@ApiParam(value ="策略失效日期")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.DATETIME)
|
||||||
|
private String tracticsEndTime;
|
||||||
|
|
||||||
|
@Column(name="LEV1_STRATEGY")
|
||||||
|
@ApiParam(value ="1级策略上架")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.INSTOCK_TRACTICS_ITEM_ONE.class, refForeignKey = "value", value = "description")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.SELECT, isMultiple = 1, dataSrc = "INSTOCK_TRACTICS_ITEM_ONE")
|
||||||
|
private String lev1Strategy;
|
||||||
|
|
||||||
|
// @Column(name="LEV1_STRATEGY")
|
||||||
|
@Transient
|
||||||
|
@ApiParam(value ="1级策略拣货")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.PICKING_TRACTICS_ITEM_ONE.class, refForeignKey = "value", value = "description")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.SELECT, isMultiple = 1, dataSrc = "PICKING_TRACTICS_ITEM_ONE")
|
||||||
|
private String lev1StrategyPicking;
|
||||||
|
|
||||||
|
@Column(name="LEV2_STRATEGY")
|
||||||
|
@ApiParam(value ="2级策略")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.INSTOCK_TRACTICS_ITEM_TWO.class, refForeignKey = "value", value = "description")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.SELECT, isMultiple = 1, dataSrc = "INSTOCK_TRACTICS_ITEM_TWO")
|
||||||
|
private String lev2Strategy;
|
||||||
|
|
||||||
|
@Column(name="LEV3_STRATEGY")
|
||||||
|
@ApiParam(value ="3级策略")
|
||||||
|
@AnnoOutputColumn(refClass = WmsEnumUtil.INSTOCK_TRACTICS_ITEM_THREE.class, refForeignKey = "value", value = "description")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.SELECT, isMultiple = 1, dataSrc = "INSTOCK_TRACTICS_ITEM_THREE")
|
||||||
|
private String lev3Strategy;
|
||||||
|
|
||||||
|
// public String getIev1StrategyPicking (String lev1StrategyPicking) {
|
||||||
|
// return this.lev1Strategy = lev1StrategyPicking;
|
||||||
|
// }
|
||||||
|
}
|
@ -1,17 +0,0 @@
|
|||||||
package cn.estsh.i3plus.pojo.wms.repository;
|
|
||||||
|
|
||||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
|
||||||
import cn.estsh.i3plus.pojo.wms.bean.WmsTmsShippingExtDetail;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description : 装车单明细
|
|
||||||
* @Reference :
|
|
||||||
* @author: qianhuasheng
|
|
||||||
* @date: 2019/9/19 14:22
|
|
||||||
* @Modify:
|
|
||||||
*/
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface IWmsTmsShippingExtDetailRepository extends BaseRepository<WmsTmsShippingExtDetail,Long> {
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
package cn.estsh.i3plus.pojo.wms.repository;
|
|
||||||
|
|
||||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
|
||||||
import cn.estsh.i3plus.pojo.wms.bean.WmsTmsShippingExtSn;
|
|
||||||
import org.springframework.stereotype.Repository;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @Description : 装车单条码明细
|
|
||||||
* @Reference :
|
|
||||||
* @author: qianhuasheng
|
|
||||||
* @date: 2019/9/19 14:22
|
|
||||||
* @Modify:
|
|
||||||
*/
|
|
||||||
|
|
||||||
@Repository
|
|
||||||
public interface IWmsTmsShippingExtSnRepository extends BaseRepository<WmsTmsShippingExtSn,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.WmsCoi;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : COI对照表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jimmy.zeng
|
||||||
|
* @CreateDate : 2020-06-10 10:24
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsCoiRepository extends BaseRepository<WmsCoi,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.WmsTractics;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 策略表
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jimmy.zeng
|
||||||
|
* @CreateDate : 2020-06-10 10:24
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsTracticsRepository extends BaseRepository<WmsTractics,Long>{
|
||||||
|
}
|
Loading…
Reference in New Issue