Merge remote-tracking branch 'origin/dev' into dev
commit
4e8716f173
@ -0,0 +1,44 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/9/6 1:25 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BYPASS_MAPPING")
|
||||
@Api("MES_BYPASS项映射关系")
|
||||
public class MesBypassMapping extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -6362769913660089402L;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "BYPASS_SEQ")
|
||||
@ApiParam("BYPASS项序号")
|
||||
private Integer bypassSeq;
|
||||
|
||||
@Column(name = "CHECK_NAME")
|
||||
@ApiParam("检测项描述")
|
||||
private String checkName;
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
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 javax.persistence.Transient;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :MES_出入库事务信息
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-12
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PACKAGE_TRANS")
|
||||
@Api("MES_出入库事务")
|
||||
public class MesPackageTrans extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -89611828516676432L;
|
||||
@Column(name = "PACKAGE_NO")
|
||||
@ApiParam("包装编号")
|
||||
private String packageNo;
|
||||
|
||||
@Column(name = "PART_NO")
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@Column(name = "PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name = "QTY")
|
||||
@ApiParam("数量")
|
||||
private Double qty = 0d;
|
||||
|
||||
@Column(name = "LOT_NO")
|
||||
@ApiParam("批号")
|
||||
private String lotNo;
|
||||
|
||||
@Column(name = "WORK_ORDER_NO")
|
||||
@ApiParam("生产工单号")
|
||||
private String workOrderNo;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "LOCATION_CODE")
|
||||
@ApiParam("库位代码")
|
||||
private String locationCode;
|
||||
|
||||
@Column(name = "TRANS_TYPE")
|
||||
@ApiParam("事务类型")
|
||||
private Integer transType = 10;
|
||||
|
||||
@Column(name = "STATUS")
|
||||
@ApiParam("状态")
|
||||
private Integer status = 10;
|
||||
}
|
@ -0,0 +1,57 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/4/18 21:05
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_PCN_SYSTEM_CFG")
|
||||
@Api("MES_PCN_系统配置")
|
||||
public class MesPcnSystemCfg extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -2733956307324811596L;
|
||||
|
||||
@Column(name = "PCN_CODE")
|
||||
@ApiParam("PCN代码")
|
||||
private String pcnCode;
|
||||
|
||||
@Column(name = "SYS_NAME")
|
||||
@ApiParam("系统名称")
|
||||
private String sysName;
|
||||
|
||||
@Column(name = "COMPANY")
|
||||
@ApiParam("公司名称")
|
||||
private String company;
|
||||
|
||||
@Column(name = "SYS_LOG")
|
||||
@ApiParam("系统LOG")
|
||||
private String sysLog;
|
||||
|
||||
@Column(name = "MAIN_LOG")
|
||||
@ApiParam("主页LOG")
|
||||
private String mainLog;
|
||||
|
||||
@Column(name = "COPYRIGHT")
|
||||
@ApiParam("版权信息")
|
||||
private String copyright;
|
||||
|
||||
@Transient
|
||||
@ApiParam("LOG存放地址")
|
||||
private String logUrl;
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
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.Lob;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :MES_工单启动池
|
||||
* @Reference :
|
||||
* @Author : siliter.yuan
|
||||
* @CreateDate : 2020-06-28
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_WORK_START_CACHE")
|
||||
@Api("MES_工单启动池")
|
||||
public class MesWorkStartCache extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = 4320604250440221045L;
|
||||
@Column(name = "ORDER_NO")
|
||||
@ApiParam("工单号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name = "AREA_CODE")
|
||||
@ApiParam("区域代码")
|
||||
private String areaCode;
|
||||
|
||||
@Column(name = "WORK_CENTER_CODE")
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@Column(name = "ACTUAL_START_TIME")
|
||||
@ApiParam("实际启动时间")
|
||||
private String actualStartTime;
|
||||
|
||||
@Column(name = "STATUS")
|
||||
@ApiParam("状态")
|
||||
private Integer status;
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/9/2 5:00 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class AssistModuleModel {
|
||||
|
||||
@ApiParam("标准节拍")
|
||||
private Integer standTakt;
|
||||
|
||||
@ApiParam("x坐标内容")
|
||||
private List<String> xAxis;
|
||||
|
||||
@ApiParam("y坐标内容")
|
||||
private List<String> yAxis;
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesProduceSn;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 条码解绑实体
|
||||
* @Reference:
|
||||
* @Author: siliter.yuan
|
||||
* @CreateDate: 2020-06-28-11:44
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class FutrueTaskModel {
|
||||
|
||||
@ApiParam("实现类")
|
||||
private Object futrueTaskService;
|
||||
|
||||
@ApiParam("包装条码")
|
||||
private StationRequestBean stationRequestBean;
|
||||
|
||||
@ApiParam("过程条码")
|
||||
private MesProduceSn produceSn;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,53 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Data
|
||||
public class TJMgnBoardModel extends BaseBean {
|
||||
|
||||
@ApiParam("工单号")
|
||||
private String workOrderNo;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@ApiParam("颜色")
|
||||
private String partColor;
|
||||
|
||||
@ApiParam("生产数量")
|
||||
private Double prodQty;
|
||||
|
||||
@ApiParam("一次合格数量")
|
||||
private Double firstQuQty;
|
||||
|
||||
@ApiParam("抛光数量")
|
||||
private Double polishQty;
|
||||
|
||||
@ApiParam("不合格数量")
|
||||
private Double noQuQty;
|
||||
|
||||
@ApiParam("一次合格率")
|
||||
private String firstPassRate;
|
||||
|
||||
@ApiParam("最终合格率")
|
||||
private String finalPassRate;
|
||||
|
||||
@ApiParam("不良处理类型")
|
||||
private String defectType;
|
||||
|
||||
@ApiParam("列名")
|
||||
private List<List<String>> headModelList;
|
||||
|
||||
@ApiParam("列值")
|
||||
private List<List<Double>> headValueModelList;
|
||||
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBypassMapping;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/9/6 1:30 下午
|
||||
* @Modify:
|
||||
*/
|
||||
public interface MesBypassMappingRepository extends BaseRepository<MesBypassMapping, 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.MesPackageTrans;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\18 10:33
|
||||
* @Modify:
|
||||
**/
|
||||
public interface MesPackageTransRepository extends BaseRepository<MesPackageTrans, Long> {
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
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 cn.estsh.i3plus.pojo.mes.bean.MesPcnSystemCfg;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : jack.jia
|
||||
* @CreateDate : 2019-04-02
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesPcnSystemCfgRepository extends BaseRepository<MesPcnSystemCfg, Long> {
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesStateMachine;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Author : simon.song
|
||||
* @CreateDate : 2020-09-01
|
||||
**/
|
||||
public interface MesStateMachineRepository extends BaseRepository<MesStateMachine, Long> {
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesWorkStartCache;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.template.BasImportTemplateDetails;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author :
|
||||
* @CreateDate : 2020-05-18 16:49
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MesWorkStartCacheRepository extends BaseRepository<MesWorkStartCache, Long> {
|
||||
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.wms.bean.MesPpDetails;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.MesPpMaster;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 生产领料计划
|
||||
* @Reference :
|
||||
* @Author : puxiao
|
||||
* @CreateDate : 2020-09-10 19:50
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class MesPPMasterModel {
|
||||
|
||||
@ApiParam("生产计划主数据")
|
||||
private MesPpMaster mesPpMaster;
|
||||
|
||||
@ApiParam("生产计划明细数据")
|
||||
private MesPpDetails mesPpDetails;
|
||||
}
|
@ -0,0 +1,116 @@
|
||||
package cn.estsh.i3plus.pojo.wms.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
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.Index;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @Description : 质检单条码质检不良清单表
|
||||
* @Reference :
|
||||
* @Author : rock.yu
|
||||
* @CreateDate : 2020-09-01 14:37
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="WMS_QC_SN_ERROR_LIST",
|
||||
indexes = {
|
||||
@Index(columnList = "ORGANIZE_CODE"),
|
||||
@Index(columnList = "ORDER_NO"),
|
||||
@Index(columnList = "PART_NO"),
|
||||
@Index(columnList = "SN")
|
||||
})
|
||||
@Api("质检单条码质检不良清单表")
|
||||
public class WmsQCSNErrorList extends BaseBean {
|
||||
private static final long serialVersionUID = 4905945381732744790L;
|
||||
|
||||
@Column(name="ORDER_NO")
|
||||
@ApiParam("单号")
|
||||
private String orderNo;
|
||||
|
||||
@Column(name="ITEM")
|
||||
@ApiParam("行号")
|
||||
private String item;
|
||||
|
||||
/**
|
||||
* 状态:10=创建,20=已处理
|
||||
*/
|
||||
@Column(name="ITEM_STATUS")
|
||||
@ApiParam(value = "状态", example = "1")
|
||||
private Integer itemStatus;
|
||||
|
||||
@Column(name="REMARK")
|
||||
@ApiParam("备注")
|
||||
private String remark;
|
||||
|
||||
@Column(name="SAMPLE_QTY", nullable = false)
|
||||
@ApiParam("检验数量")
|
||||
@ColumnDefault("0")
|
||||
private double sampleQty;
|
||||
|
||||
@Column(name="REJECT_QTY", nullable = false)
|
||||
@ApiParam("不合格数量")
|
||||
@ColumnDefault("0")
|
||||
private double rejectQty;
|
||||
|
||||
@Column(name="UNIT")
|
||||
@ApiParam("单位")
|
||||
private String unit;
|
||||
|
||||
@Column(name="PART_NO")
|
||||
@ApiParam("物料编码")
|
||||
private String partNo;
|
||||
|
||||
@Column(name="PART_NAME_RDD")
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@Column(name="SN")
|
||||
@ApiParam("条码")
|
||||
private String sn;
|
||||
|
||||
@Column(name = "QC_USER")
|
||||
@ApiParam("检验员")
|
||||
private String qcUser;
|
||||
|
||||
@Column(name = "QC_TIME")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
@ApiParam(value = "检验时间", example = "2000-01-01 01:00:00")
|
||||
private String qcTime;
|
||||
|
||||
@Column(name = "VENDOR_NO")
|
||||
@ApiParam(value = "供应商编码")
|
||||
private String vendorNo;
|
||||
|
||||
@Column(name = "ERROR_CODE")
|
||||
@ApiParam("不良代码")
|
||||
private String errorCode;
|
||||
|
||||
@Column(name = "ERROR_DESC_RDD")
|
||||
@ApiParam("不良描述")
|
||||
private String errorDescRdd;
|
||||
|
||||
@Column(name = "RC_QTY", columnDefinition = "decimal(18,8)", nullable = false)
|
||||
@ColumnDefault("0")
|
||||
@ApiParam(value = "收货数量", example = "0")
|
||||
public Double rcQty;
|
||||
|
||||
@Column(name = "QC_SCALE", columnDefinition = "decimal(18,8)", nullable = false)
|
||||
@ColumnDefault("0")
|
||||
@ApiParam(value = "质检比例", example = "0")
|
||||
public String qcScale;
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* @Description : MGN质检报表(通过查询视图实现)
|
||||
* @Reference :
|
||||
* @Author : puxiao.liao
|
||||
* @CreateDate : 2020-09-01 14:37
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("质检报表")
|
||||
public class WmsQCViewReport extends BaseBean {
|
||||
private static final long serialVersionUID = 4905945381732744790L;
|
||||
|
||||
@ApiParam("单号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam("检验数量")
|
||||
private double sampleQty;
|
||||
|
||||
@ApiParam("不合格数量")
|
||||
private double rejectQty;
|
||||
|
||||
@ApiParam("检验员")
|
||||
private String qcUser;
|
||||
|
||||
@ApiParam(value = "检验时间")
|
||||
private String qcTime;
|
||||
|
||||
@ApiParam(value = "收货数量")
|
||||
public Double rcQty;
|
||||
|
||||
@ApiParam(value = "质检比例")
|
||||
public String qcScale;
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : PO明细回传汇总Model
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-09-12 13:56
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("PO明细回传汇总Model")
|
||||
public class WmsPoCountModel {
|
||||
|
||||
@ApiParam(value = "po单号")
|
||||
private String poOrderNo;
|
||||
|
||||
@ApiParam(value = "收货日期")
|
||||
private String rcDate;
|
||||
|
||||
@ApiParam(value = "源单号")
|
||||
private String srcOrderNo;
|
||||
|
||||
@ApiParam(value = "源行号")
|
||||
private Integer srcItem;
|
||||
|
||||
@ApiParam(value = "收货批次")
|
||||
private String lotNo;
|
||||
|
||||
@ApiParam(value = "物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam(value = "物料名称")
|
||||
private String partName;
|
||||
|
||||
@ApiParam(value = "仓库")
|
||||
private String whNo;
|
||||
|
||||
@ApiParam(value = "汇总数量")
|
||||
private Double sumQty;
|
||||
|
||||
@ApiParam(value = "供应商批次")
|
||||
private String venLotNo;
|
||||
|
||||
@ApiParam(value = "操作人")
|
||||
private String user;
|
||||
|
||||
public WmsPoCountModel() {
|
||||
}
|
||||
|
||||
public WmsPoCountModel(String poOrderNo, String rcDate, String srcOrderNo, Integer srcItem, String lotNo, String partNo, String partName, String whNo, Double sumQty, String venLotNo, String user) {
|
||||
this.poOrderNo = poOrderNo;
|
||||
this.rcDate = rcDate;
|
||||
this.srcOrderNo = srcOrderNo;
|
||||
this.srcItem = srcItem;
|
||||
this.lotNo = lotNo;
|
||||
this.partNo = partNo;
|
||||
this.partName = partName;
|
||||
this.whNo = whNo;
|
||||
this.sumQty = sumQty;
|
||||
this.venLotNo = venLotNo;
|
||||
this.user = user;
|
||||
}
|
||||
}
|
@ -0,0 +1,56 @@
|
||||
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description : 推荐车辆信息model
|
||||
* @Reference :
|
||||
* @Author : jimmy.zeng
|
||||
* @CreateDate : 2020-09-02 11:17
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("推荐车辆信息model")
|
||||
public class WmsRecommendCarModel extends BaseBean implements Serializable {
|
||||
|
||||
@ApiParam(value = "计划日期")
|
||||
String planTimeStart;
|
||||
@ApiParam(value = "待发物料总数")
|
||||
Double partNoSum;
|
||||
@ApiParam(value = "标准包装")
|
||||
Double snp;
|
||||
@ApiParam(value = "单包装体积(m3)")
|
||||
Double vol;
|
||||
@ApiParam(value = "物料体积(m3)")
|
||||
Double partTotalVol;
|
||||
@ApiParam(value = "物料号")
|
||||
String partNo;
|
||||
|
||||
public WmsRecommendCarModel(String partNo, Double partNoSum, Double vol, Double snp,Double partTotalVol,
|
||||
String organizeCode,Long id,String planTimeStart) {
|
||||
this.partNo = partNo;
|
||||
this.partNoSum = partNoSum;
|
||||
this.vol = vol;
|
||||
this.snp = snp;
|
||||
this.partTotalVol = partTotalVol;
|
||||
this.organizeCode = organizeCode;
|
||||
this.id = id;
|
||||
this.planTimeStart = planTimeStart;
|
||||
}
|
||||
|
||||
// @ApiParam(value = "车辆编号")
|
||||
// String carNo;
|
||||
// @ApiParam(value = "车辆名称")
|
||||
// String carDesc;
|
||||
// @ApiParam(value = "容积(m3)")
|
||||
// Double volume;
|
||||
// @ApiParam(value = "需要(辆)")
|
||||
// Integer carQty;
|
||||
|
||||
|
||||
}
|
@ -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.WmsQCSNErrorList;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 质检单条码不良操作类
|
||||
* @Reference :
|
||||
* @Author : rock.yu
|
||||
* @CreateDate : 2020-09-02 21:06
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsQCSNErrorListRepository extends BaseRepository<WmsQCSNErrorList, Long> {
|
||||
}
|
Loading…
Reference in New Issue