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.InStock { /// /// 到货通知单条码结果 /// public class InArrivalBarCodeResult { /// /// 收货单明细Id /// public int? ReceiptDtlId { get; set; } /// /// 物品编码 /// public string MaterielCode { get; set; } /// /// 物品名称 /// public string MaterielName { get; set; } /// /// 规格型号 /// public string SpecsModel { get; set; } /// /// 批号 /// public string BatchNo { get; set; } /// /// 到货数量 /// public decimal ArrivalQTY { get; set; } /// /// 收货数量 /// public decimal ReceiptQTY { 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; } public int ReceiptTrayQty { get; set; } /// /// /// public decimal TrayRemainQty { get { return this.ReceiptQTY - ReceiptTrayQty; } } public string ReceiptNo { get; set; } } }