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 InInspectionBarCodeResult { /// /// 质检单ID /// public int InspectionId { get; set; } /// /// 质检单明细ID /// public int InspectionDtlId { get; set; } public string MaterielCode { get; set; } /// /// 物品名称 /// public string MaterielName { get; set; } /// /// 规格型号 /// public string SpecsModel { get; set; } /// /// 批号 /// public string BatchNo { get; set; } /// /// 到货数量 /// public int? ArrivalQTY { get; set; } /// /// 收货数量 /// public int? ReceiptQTY { get; set; } /// /// 二级容器 /// public string TwoVessel { get; set; } /// /// 单位编码 /// public string UnitCode { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 备注 /// public string Remark { get; set; } } }