using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.BllQualityEntity { /// /// 取样明细表 /// [SugarTable("BllSamplingDetails")] public class BllSamplingDetails:BaseEntity { /// /// Desc:请验号 /// Default: /// Nullable:True /// public string QcNo {get;set;} /// /// Desc:入库单号 /// Default: /// Nullable:True /// public string ASNNo { 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;} } }