U8Stock.java 1.04 KB
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;

}