|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package com.huaheng.mobile.invenory;
import lombok.Data;
import java.math.BigDecimal;
/**
*
* @author Enzo Cotter
* @date 2019/12/15
*/
@Data
public class MobileInventory {
/** 库位id */
private int id;
/** 库位编号 */
private String locationCode;
/** 容器编号 */
private String containerCode;
/** 物料编码 */
private String materialCode;
/**物料名称 */
private String materialName;
/**物料规格 */
private String specification;
/** 数量 */
private BigDecimal qty;
/** 任务数量 */
private BigDecimal taskQty = new BigDecimal(0);
/** 结果类型 */
private int resultType;
}
|