using System; using System.Collections.Generic; using System.Text; namespace Model.ModelDto.BllQualityDto { public class BllSamplingDetailsDto { /// /// Desc:请验号 /// Default: /// Nullable:True /// public string QcNo { get; set; } /// /// Desc:入库单号 /// Default: /// Nullable:True /// public string ASNNo { get; set; } /// /// Desc:状态 0:待请验 1:待出库 2:待取样 3:已完成 /// Default:0 /// Nullable:True /// public string Status { get; set; } /// /// Desc:托盘号 /// Default: /// Nullable:True /// public string PalletNo { get; set; } /// /// Desc:箱号 /// Default: /// Nullable:True /// public string BoxNo { get; set; } /// /// Desc:盒号 /// Default: /// Nullable:True /// public string BoxNo2 { get; set; } /// /// Desc:支号 /// Default: /// Nullable:True /// public string BoxNo3 { 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 SupplierLot { get; set; } /// /// Desc:取样数量 /// Default: /// Nullable:True /// public decimal? CompleteQty { get; set; } /// /// Desc:自定义1 /// Default: /// Nullable:True /// public string UDF1 { get; set; } /// /// Desc:自定义2 /// Default: /// Nullable:True /// public string UDF2 { get; set; } /// /// Desc:自定义3 /// Default: /// Nullable:True /// public string UDF3 { get; set; } /// /// Desc:自定义4 /// Default: /// Nullable:True /// public string UDF4 { get; set; } /// /// Desc:自定义5 /// Default: /// Nullable:True /// public string UDF5 { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 更新时间 /// public string UpdateTime { get; set; } /// /// 更新人 /// public string UpdateUserName { get; set; } } }