零件消耗数量模型
parent
5ca70c8ae6
commit
c3a018dc1f
@ -0,0 +1,24 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model.mgn.bj;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 零件消耗数量模型
|
||||
* @Reference :
|
||||
* @Author : dominic
|
||||
* @CreateDate : 2021/7/1 14:40
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class PartConsumeCountModel {
|
||||
|
||||
@ApiParam("零件号")
|
||||
private String partNo;
|
||||
|
||||
@ApiParam("消耗数量")
|
||||
private Integer consumeQty;
|
||||
|
||||
@ApiParam("需求数量")
|
||||
private Integer demandQty;
|
||||
}
|
Loading…
Reference in New Issue