package com.huaheng.pc.receipt.U8.domain; import lombok.Data; import java.math.BigDecimal; @Data public class U8Material { /** 数量 */ private BigDecimal Qty; /** 物料编码 */ private String itemcode; /** 工单子件行ID */ private String AllocateId; /** 库存id */ private Integer inventoryId; }