using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.BllAsnEntity { /// ///入库单明细表/到货通知单明细 /// [SugarTable("BllArrivalNoticeDetail")] public class BllArrivalNoticeDetail:BaseEntity { /// /// 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 int Qty {get;set;} /// /// Desc:已组数量 /// Default:0 /// Nullable:True /// public int? FactQty {get;set;} /// /// Desc:入库数量 /// Default:0 /// Nullable:True /// public int? CompleteQty {get;set;} /// /// Desc:包装编号 /// Default: /// Nullable:True /// public string PackagNo {get;set;} /// /// Desc:单价 /// Default: /// Nullable:True /// public decimal? Price {get;set;} /// /// Desc:总金额 /// Default: /// Nullable:True /// public decimal? Money {get;set;} /// /// 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 DateTime? CompleteTime { get; set; } /// /// 生产时间 /// public DateTime? ProductionTime { get; set; } /// /// 过期时间 /// public DateTime? ExpirationTime { get; set; } } }