ICSInventory.java
2.03 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.huaheng.api.U8.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* 库存实时查询
* @author huaheng
* @date 2019-1-4
*/
public class ICSInventory implements Serializable {
private static final long serialVersionUID = 7064545017342131318L;
//仓库编码
private String cWhCode;
//项目号
private String cItemName;
//存货编码
private String cInvCode;
//存货名称
private String cInvName;
//规格型号
private String cInvStd;
//数量
private BigDecimal iQuantity;
//计量单位
private String cComUnitName;
//公司代码(账套代码)
@JsonProperty(value = "CompanyCode")
private String CompanyCode;
public String getcWhCode() {
return cWhCode;
}
public void setcWhCode(String cWhCode) {
this.cWhCode = cWhCode;
}
public String getcItemName() {
return cItemName;
}
public void setcItemName(String cItemName) {
this.cItemName = cItemName;
}
public String getcInvCode() {
return cInvCode;
}
public void setcInvCode(String cInvCode) {
this.cInvCode = cInvCode;
}
public String getcInvName() {
return cInvName;
}
public void setcInvName(String cInvName) {
this.cInvName = cInvName;
}
public String getcInvStd() {
return cInvStd;
}
public void setcInvStd(String cInvStd) {
this.cInvStd = cInvStd;
}
public BigDecimal getiQuantity() {
return iQuantity;
}
public void setiQuantity(BigDecimal iQuantity) {
this.iQuantity = iQuantity;
}
public String getcComUnitName() {
return cComUnitName;
}
public void setcComUnitName(String cComUnitName) {
this.cComUnitName = cComUnitName;
}
public String getCompanyCode() {
return CompanyCode;
}
public void setCompanyCode(String companyCode) {
CompanyCode = companyCode;
}
}