Merge remote-tracking branch 'origin/dev' into dev
commit
04c6946271
@ -0,0 +1,27 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesLabelTemplate;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description: 打印信息封装模板
|
||||
* @Reference:
|
||||
* @Author: wangjie
|
||||
* @CreateDate:2019-08-27-13:24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("打印信息封装模板")
|
||||
public class SnPrintDataModel {
|
||||
|
||||
@ApiParam("打印数据")
|
||||
private List<SnPrintValueModel> snPrintValueModel;
|
||||
|
||||
@ApiParam("打印模板及参数")
|
||||
private MesLabelTemplate labelTemplate;
|
||||
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 条码补打印
|
||||
* @Reference:
|
||||
* @Author: wangjie
|
||||
* @CreateDate:2019-08-27-13:24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("打印信息模板")
|
||||
public class SnPrintModel extends SnPrintValueModel {
|
||||
|
||||
@ApiParam("过程条码")
|
||||
private SnPrintDataModel snPrintModel;
|
||||
|
||||
@ApiParam("产品条码")
|
||||
private SnPrintDataModel prodPrintModel;
|
||||
|
||||
@ApiParam("包装条码")
|
||||
private SnPrintDataModel packagePrintModel;
|
||||
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesLabelTemplate;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description : 产品/包装打印模板model
|
||||
* @Reference :
|
||||
* @Author : wangjie
|
||||
* @CreateDate : 2019-08-18 11:00
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class SnPrintTemplateModel implements Serializable {
|
||||
|
||||
@ApiParam("产品条码模板")
|
||||
private MesLabelTemplate prodSnPrintTemplate;
|
||||
|
||||
@ApiParam("包装条码模板集合")
|
||||
private List<MesLabelTemplate> packageSnPrintTemplateList;
|
||||
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesProduceSn;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 条码补打印
|
||||
* @Reference:
|
||||
* @Author: wangjie
|
||||
* @CreateDate:2019-08-27-13:24
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api("打印信息模板")
|
||||
public class SnPrintValueModel extends MesProduceSn {
|
||||
@ApiParam("打印描述")
|
||||
private String printDesc;
|
||||
|
||||
@ApiParam("条码")
|
||||
private String barCode;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("批次号")
|
||||
private String batchNo;
|
||||
|
||||
@ApiParam("箱数量")
|
||||
private String boxQty;
|
||||
|
||||
@ApiParam("订单号")
|
||||
private String orderNo;
|
||||
|
||||
@ApiParam("生产日期")
|
||||
private String productionTime;
|
||||
|
||||
@ApiParam("包装编码")
|
||||
private String packageNo;
|
||||
|
||||
@ApiParam("包装规格")
|
||||
private String packageSpec;
|
||||
|
||||
@ApiParam("供应商")
|
||||
private String supplier;
|
||||
|
||||
@ApiParam("客户名称")
|
||||
private String customerName;
|
||||
|
||||
@ApiParam("客户零件号")
|
||||
private String customerPartNo;
|
||||
|
||||
@ApiParam("客户物料名称")
|
||||
private String customerPartName;
|
||||
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@ApiParam("单位")
|
||||
private String unit;
|
||||
|
||||
@ApiParam("特殊批号")
|
||||
private String fixLotNo;
|
||||
|
||||
@ApiParam("生产工单号")
|
||||
private String workOrderNo;
|
||||
|
||||
@ApiParam("生产线代码")
|
||||
private String workCenterCode;
|
||||
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package cn.estsh.i3plus.pojo.wms.dto;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 物料数量DTO
|
||||
*/
|
||||
@Data
|
||||
public class WmsPartQtyDto {
|
||||
|
||||
@ApiParam(value = "物料名称")
|
||||
private String partName;
|
||||
@ApiParam(value = "物料编码")
|
||||
private String partNO;
|
||||
@ApiParam(value = "应收数量")
|
||||
private String qty;
|
||||
@ApiParam(value = "实收数量")
|
||||
private String rcQty;
|
||||
@ApiParam(value = "待收数量")
|
||||
private String dueQty;
|
||||
}
|
Loading…
Reference in New Issue