Blame view

src/main/java/com/huaheng/pc/receipt/U8/domain/U8Stock.java 1.04 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
package com.huaheng.pc.receipt.U8.domain;

import lombok.Data;

import java.math.BigDecimal;

@Data
public class U8Stock {
    /** 行号 */
    private Integer SerialNumber;
    /** 公司代码 */
    private String cCompanyCode;
    /** U8库存数量 */
    private BigDecimal iQuantity;
    /** 库存数量 */
    private BigDecimal qty;
    /** 执行预定数量 */
    private BigDecimal taskQty;
    /** 应领数量 */
    private BigDecimal needQuantity;
    /** 已领数量 */
    private BigDecimal receiveQuantity;
    /** 计量单位 */
    private String cComUnitName;
    /** 仓库编码 */
    private String cWHCode;
    /** 物料编码 */
    private String cInvCode;
    /** 仓库名称 */
    private String cWHName;
    /** 物料规格 */
    private String cInvStd;
    /** 物料名称 */
    private String cInvName;
    /** 工单行ID */
    private String ModID;
    /** 工单子件行ID */
    private String AllocateId;
    /** 库存ID */
    private Integer inventoryId;
    /** 库区编码 */
    private String zoneCode;

}