using DapperORMCore.Model.CoreModel; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Result.NXPDA.Balance { /// /// 盘点条码结果 /// public class InventoryPalletDTLResult { /// /// 盘点明细ID /// public int InventoryDtlId { get; set; } public int InventoryId { get; set; } /// /// 物品编码 /// public string MaterielCode { get; set; } /// /// 物品名称 /// public string MaterielName { get; set; } /// /// 实际数量 /// public string ActualQTY { get; set; } public string MaterielBarcode { get; set; } /// /// 库存数量 /// public string StockQTY { get; set; } /// /// 二级容器 /// public string TwoVessel { get; set; } } }