parent
68fa329701
commit
66b98dd6d5
@ -0,0 +1,45 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: siliter.yuan
|
||||||
|
* @CreateDate: 2020\06\22 15:58
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class MesPaintSnPrintModel implements Serializable {
|
||||||
|
|
||||||
|
@ApiParam("过程条码")
|
||||||
|
private String serialNumber;
|
||||||
|
|
||||||
|
@ApiParam("产品条码")
|
||||||
|
private String produceSn;
|
||||||
|
|
||||||
|
@ApiParam("包装编号")
|
||||||
|
private String packageNo;
|
||||||
|
|
||||||
|
@ApiParam("工单号")
|
||||||
|
private String workOrderNo;
|
||||||
|
|
||||||
|
@ApiParam("工作中心代码")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("工作单元代码")
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam("工厂代码")
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam("打印模板")
|
||||||
|
private MesLabelTemplate labelTemplate;
|
||||||
|
}
|
@ -0,0 +1,55 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesCellFeed;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: siliter.yuan
|
||||||
|
* @CreateDate: 2020/6/21 8:06 PM
|
||||||
|
* @Description:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Api("涂装上线MODEL")
|
||||||
|
public class PaintOnLineModel {
|
||||||
|
|
||||||
|
@ApiParam("工作中心")
|
||||||
|
private String workCenterCode;
|
||||||
|
|
||||||
|
@ApiParam("工作单元")
|
||||||
|
private String workCellCode;
|
||||||
|
|
||||||
|
@ApiParam("工单号")
|
||||||
|
private String workOrderNo;
|
||||||
|
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
@ApiParam("物料名称")
|
||||||
|
private String partNameRdd;
|
||||||
|
|
||||||
|
@ApiParam("颜色")
|
||||||
|
private String color;
|
||||||
|
|
||||||
|
@ApiParam("工单数量")
|
||||||
|
private Double orderNum;
|
||||||
|
|
||||||
|
@ApiParam("包装数量")
|
||||||
|
private Double packageNum;
|
||||||
|
|
||||||
|
@ApiParam("项目名称")
|
||||||
|
private String productName;
|
||||||
|
|
||||||
|
@ApiParam("创建时间")
|
||||||
|
private String createDateTime;
|
||||||
|
|
||||||
|
@ApiParam("圈数")
|
||||||
|
private Integer rounds;
|
||||||
|
|
||||||
|
@ApiParam("工位投料数据列表")
|
||||||
|
private List<MesCellFeed> cellFeedList;
|
||||||
|
}
|
Loading…
Reference in New Issue