Merge branches 'dev' and 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
04453aa706
@ -0,0 +1,19 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.dto;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.common.Pager;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@Api("库存预警入参")
|
||||||
|
public class QuanWarnDto extends Pager {
|
||||||
|
|
||||||
|
private String organizeCode;
|
||||||
|
private Integer checked;
|
||||||
|
private String partNo;
|
||||||
|
private String partType;
|
||||||
|
|
||||||
|
public Integer getChecked() {
|
||||||
|
return checked == null? 0 : checked;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,50 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.modelbean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 移动单统计输出model
|
||||||
|
* @Reference :
|
||||||
|
* @Author : gcj
|
||||||
|
* @CreateDate : 2019-10-31 20:04
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Api("移动单统计输出model")
|
||||||
|
public class WmsMoveInfoModel {
|
||||||
|
|
||||||
|
|
||||||
|
@ApiParam(value = "操作时间")
|
||||||
|
private String modifyDateTime;
|
||||||
|
@ApiParam(value = "物料号")
|
||||||
|
private String partNo;
|
||||||
|
@ApiParam(value = "物料名称")
|
||||||
|
private String partNameRdd;
|
||||||
|
@ApiParam(value = "交易类型")
|
||||||
|
private String transTypeCode;
|
||||||
|
@ApiParam(value = "交易类型名称")
|
||||||
|
private String transTypeName;
|
||||||
|
@ApiParam(value = "业务类型")
|
||||||
|
private String busiTypeCode;
|
||||||
|
@ApiParam(value = "处理数量")
|
||||||
|
private String sumQty;
|
||||||
|
@ApiParam(value = "工厂代码")
|
||||||
|
private String organizeCode;
|
||||||
|
@ApiParam(value = "操作状态")
|
||||||
|
private String itemStatus;
|
||||||
|
public WmsMoveInfoModel() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public WmsMoveInfoModel(String modifyDateTime, String partNo, String partNameRdd, String transTypeCode, String transTypeName, String busiTypeCode, String sumQty, String organizeCode) {
|
||||||
|
this.modifyDateTime = modifyDateTime;
|
||||||
|
this.partNo = partNo;
|
||||||
|
this.partNameRdd = partNameRdd;
|
||||||
|
this.transTypeCode = transTypeCode;
|
||||||
|
this.transTypeName = transTypeName;
|
||||||
|
this.busiTypeCode = busiTypeCode;
|
||||||
|
this.sumQty = sumQty;
|
||||||
|
this.organizeCode = organizeCode;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue