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 InReceiptDTLResult { /// /// 批次号 /// public string BatchNo { get; set; } /// /// 数量 /// public int QTY { get; set; } /// /// 物品编码 /// public string MaterielCode { get; set; } /// /// 物品名称 /// public string MaterielName { get; set; } /// /// 单位 /// public string UnitName { get; set; } /// /// 操作时间 /// public DateTime OperateTime { get; set; } } }