package com.huaheng.mobile.invenory; import lombok.Data; import java.math.BigDecimal; /** * * @author Enzo Cotter * @date 2019/12/15 */ @Data public class MobileInventory { /** 库位id */ private int id; /** 库位编号 */ private String locationCode; /** 容器编号 */ private String containerCode; /** 物料编码 */ private String materialCode; /**物料名称 */ private String materialName; /**物料规格 */ private String specification; /** 数量 */ private BigDecimal qty; /** 任务数量 */ private BigDecimal taskQty = new BigDecimal(0); /** 结果类型 */ private int resultType; }