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 InventoryBarCodeResult { /// /// 盘点明细Id /// public int? InventoryDtlId { get; set; } /// /// 物品编码 /// public string MaterielCode { get; set; } /// /// 物品名称 /// public string MaterielName { get; set; } /// /// 规格型号 /// public string SpecsModel { get; set; } /// /// 批号 /// public string BatchNo { get; set; } /// /// 实际数量 /// public int ActualQTY { get; set; } /// /// 库存数量 /// public int StockQTY { get; set; } /// /// 二级容器 /// public string TwoVessel { get; set; } /// /// 库位编码 /// public string BinCode { get; set; } /// /// 库位名称 /// public string BinName { get; set; } /// /// 单位编码 /// public string UnitCode { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 备注 /// public string Remark { get; set; } } }