|
|
|
@ -16,23 +16,28 @@ import lombok.Data;
|
|
|
|
|
@Api(value="生产工单导入",description = "生产工单导入")
|
|
|
|
|
public class MesWorkOrderModel {
|
|
|
|
|
|
|
|
|
|
@ApiParam("工单号")
|
|
|
|
|
//工单号
|
|
|
|
|
@ApiParam("OrderCode")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String orderNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam("物料号")
|
|
|
|
|
//物料号
|
|
|
|
|
@ApiParam("ItemCode")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String partNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam("客户产线代码")
|
|
|
|
|
//客户产线代码
|
|
|
|
|
@ApiParam("ProductionLineID")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String custProdLineCode;
|
|
|
|
|
private String workCenterCode;
|
|
|
|
|
|
|
|
|
|
@ApiParam("数量")
|
|
|
|
|
//数量
|
|
|
|
|
@ApiParam("DemandQty")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Double qty;
|
|
|
|
|
|
|
|
|
|
@ApiParam("开始时间")
|
|
|
|
|
//开始时间
|
|
|
|
|
@ApiParam("ProductDate")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String startTime;
|
|
|
|
|
|
|
|
|
|