using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm { public class ArrivalNoticeDetailVm : IndexPage { public int? Id { get; set; } /// /// Desc:入库单号 /// Default: /// Nullable:False /// public string ASNNo { get; set; } /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string SkuNo { get; set; } /// /// Desc:物料名称 /// Default: /// Nullable:True /// public string SkuName { get; set; } /// /// Desc:规格 /// Default: /// Nullable:True /// public string Standard { get; set; } /// /// Desc:批次号 /// Default: /// Nullable:True /// public string LotNo { get; set; } /// /// Desc:批次描述 /// Default: /// Nullable:True /// public string LotText { get; set; } /// /// Desc:数量 /// Default: /// Nullable:False /// public decimal? Qty { get; set; } /// /// Desc:已组数量 /// Default:0 /// Nullable:True /// public decimal? FactQty { get; set; } /// /// Desc:入库数量 /// Default:0 /// Nullable:True /// public decimal? CompleteQty { get; set; } /// /// Desc:包装编号 /// Default: /// Nullable:True /// public string PackagNo { get; set; } /// /// Desc:单价 /// Default: /// Nullable:True /// public decimal? Price { get; set; } = 0; /// /// Desc:总金额 /// Default: /// Nullable:True /// public decimal? Money { get; set; } = 0; /// /// Desc:是否裹包 /// Default: /// Nullable:True /// public string IsBale { get; set; } /// /// Desc:是否打带 /// Default: /// Nullable:True /// public string IsBelt { get; set; } /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot { get; set; } /// /// Desc:状态 /// Default: /// Nullable:True /// public string Status { get; set; } public int? CreateUser { get; set; } /// /// 批次属性1-生产日期 /// public string Lot1 { get; set; } /// /// 批次属性2-过期日期 /// public string Lot2 { get; set; } /// /// 批次属性3 /// public string Lot3 { get; set; } /// /// 批次属性4 /// public string Lot4 { get; set; } /// /// 批次属性5 /// public string Lot5 { get; set; } /// /// 批次属性6 /// public string Lot6 { get; set; } /// /// 标签常值 /// public string BoxCodeStr { get; set; } /// /// 自定义列1 /// public string UDF1 { get; set; } /// /// 自定义列2 /// public string UDF2 { get; set; } /// /// 自定义列3 /// public string UDF3 { get; set; } /// /// 自定义列4 /// public string UDF4 { get; set; } /// /// 自定义列5 /// public string UDF5 { get; set; } } }