parent
644454294c
commit
f1715db664
@ -0,0 +1,26 @@
|
|||||||
|
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;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 生产领料计划
|
||||||
|
* @Reference :
|
||||||
|
* @Author : puxiao
|
||||||
|
* @CreateDate : 2020-09-10 19:50
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class MesPPMasterModel {
|
||||||
|
|
||||||
|
@ApiParam("生产计划主数据")
|
||||||
|
private MesPpMaster mesPpMaster;
|
||||||
|
|
||||||
|
@ApiParam("生产计划明细数据")
|
||||||
|
private List<MesPpDetails> mesPpDetailsList;
|
||||||
|
}
|
Loading…
Reference in New Issue