Merge branch 'dev' of jhforever.wang/wangjie-i3plus-pojo into dev
commit
47fc864a62
@ -0,0 +1,33 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 生产计划批量编制明细model
|
||||
* @Author: wangjie
|
||||
* @Date: 2020/4/21 6:55 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class ProdPlanBatchCompileDetailModel {
|
||||
|
||||
@ApiParam("日期")
|
||||
private String date;
|
||||
|
||||
@ApiParam("日期对应到数量")
|
||||
private Double qty;
|
||||
|
||||
@ApiParam("是否只读")
|
||||
private Boolean readonly;
|
||||
|
||||
@ApiParam("完成数量")
|
||||
private Double completeQty;
|
||||
|
||||
@ApiParam("完成数量的颜色")
|
||||
private String color;
|
||||
|
||||
@ApiParam("工单号")
|
||||
private String orderNo;
|
||||
|
||||
}
|
@ -0,0 +1,78 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description: 生产计划批量编制model
|
||||
* @Author: wangjie
|
||||
* @Date: 2020/4/21 6:55 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
public class ProdPlanBatchCompileModel {
|
||||
|
||||
@ApiParam("工作中心代码")
|
||||
private String workCenterCode;
|
||||
|
||||
@ApiParam("预留字段1")
|
||||
private String reserved1;
|
||||
|
||||
@ApiParam("预留字段2")
|
||||
private String reserved2;
|
||||
|
||||
@ApiParam("物料号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("物料名称")
|
||||
private String partNameRdd;
|
||||
|
||||
@ApiParam(value = "班组名称")
|
||||
public String shiftGroupName;
|
||||
|
||||
@ApiParam(value = "班次名称")
|
||||
public String shiftName;
|
||||
|
||||
@ApiParam("班组")
|
||||
private String shiftGroup;
|
||||
|
||||
@ApiParam("班次")
|
||||
private String shiftCode;
|
||||
|
||||
@ApiParam("客户名称")
|
||||
private String custCodeName;
|
||||
|
||||
@ApiParam("客户代码")
|
||||
private String custCode;
|
||||
|
||||
@ApiParam("客户订单号")
|
||||
private String custOrderNo;
|
||||
|
||||
@ApiParam("预留字段3")
|
||||
private String reserved3;
|
||||
|
||||
@ApiParam("预留字段4")
|
||||
private String reserved4;
|
||||
|
||||
@ApiParam("单位")
|
||||
private String unit;
|
||||
|
||||
@ApiParam("日期数量集合")
|
||||
private List<ProdPlanBatchCompileDetailModel> detailList;
|
||||
|
||||
@ApiParam("合计")
|
||||
private Double amount;
|
||||
|
||||
@ApiParam("完成合计")
|
||||
private Double completeAmount;
|
||||
|
||||
@ApiParam("计划类型")
|
||||
private Integer planType;
|
||||
|
||||
@ApiParam("计划类型名称")
|
||||
private String planTypeName;
|
||||
|
||||
}
|
Loading…
Reference in New Issue