using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.BllQualityEntity { /// ///质检请验表 /// [SugarTable("BllQualityInspectionRequest")] public partial class BllQualityInspectionRequest:BaseEntity { /// /// Desc:请验号 /// Default: /// Nullable:True /// public string QcNo {get;set;} /// /// Desc:状态 0:待请验 1:待出库 2:待取样 3:已完成 /// Default:0 /// Nullable:True /// public string Status {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 LotNo {get;set;} /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot {get;set;} /// /// Desc:数量(入库单到货数量) /// Default: /// Nullable:True /// public decimal? Qty {get;set;} /// /// Desc:取样量 /// Default: /// Nullable:True /// public decimal? SamplingQty {get;set;} /// /// Desc:入库单号 /// Default: /// Nullable:True /// public string ASNNo {get;set;} /// /// Desc:请验日期 /// Default: /// Nullable:True /// public DateTime? RequestTime {get;set;} /// /// Desc:请验人 /// Default: /// Nullable:True /// public int? RequestUser {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;} } }