ReceiptJJBean.java
683 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.huaheng.mobile.receipt;
import java.math.BigDecimal;
import lombok.Data;
/**
* 机加库收货
*
* @author Enzo Cotter
* @date 2019/12/15
*/
@Data
public class ReceiptJJBean {
/**
* 容器编码
*/
String containerCode;
/**
* 物料code
*/
String materialCode;
/**
* 收货数量
*/
BigDecimal qty;
/**
* 库存状态
* good 良品 待确认 discussed
* defective 次品 scrap 报废品
*/
String inventorySts;
/**
* 起点
*/
String fromPort;
/**
* 货主
*/
String companyCode;
/**
* 跟踪单号
*/
String referCode;
}