移动条码对象封装
parent
af3cd73af4
commit
93ff5ad071
@ -0,0 +1,23 @@
|
||||
package cn.estsh.i3plus.pojo.model.wms;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description : 入库上架任务回显模型
|
||||
* @Reference :
|
||||
* @Author : hansen.ke
|
||||
* @CreateDate : 2018-12-21 10:14
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class InStockCOInfoModel {
|
||||
|
||||
// 物料编码
|
||||
private String partNo;
|
||||
|
||||
// 待上架箱数
|
||||
private Integer waitingCounts;
|
||||
|
||||
// 已上架箱数
|
||||
private Integer finishedCounts;
|
||||
}
|
Loading…
Reference in New Issue