ICSInventory.java
825 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
package com.huaheng.pc.u8.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
/**
 *  库存实时查询
 *   @author huaheng
 *   @date 2019-1-4
 */
@Data
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;
}