30 changed files with 1543 additions and 875 deletions
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,24 @@
|
||||
package com.logpm.distribution.dto.app; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class StockConfigInfoVO { |
||||
|
||||
/** |
||||
* 客户 |
||||
*/ |
||||
private String customer; |
||||
|
||||
/** |
||||
* 地址 |
||||
*/ |
||||
private String address;//地址
|
||||
|
||||
/** |
||||
* 库存扫码记录 |
||||
*/ |
||||
private List<StockConfigOrderPackageListVO> stockConfigOrderPackageListVOS; |
||||
} |
@ -0,0 +1,36 @@
|
||||
package com.logpm.distribution.dto.app; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.util.Date; |
||||
|
||||
|
||||
/** |
||||
* 配置包条码 扫码完成展示列表 |
||||
*/ |
||||
@Data |
||||
public class StockConfigOrderPackageListVO { |
||||
|
||||
|
||||
/** |
||||
* 入库批次 |
||||
*/ |
||||
private String incomingBatch; |
||||
|
||||
|
||||
/** |
||||
* 码 |
||||
*/ |
||||
private String code; |
||||
|
||||
/** |
||||
* 码 |
||||
*/ |
||||
private Integer num; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue