using System; using System.Linq; using System.Text; using SqlSugar; using WMS.Entity.SysEntity; namespace WMS.Entity.BllSoEntity { /// ///出库单明细表/出库通知单明细 /// [SugarTable("BLLExportNoticeDetail")] public class BllExportNoticeDetail:BaseEntity { /// /// Desc:出库单号 /// Default: /// Nullable:True /// public string SONo {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:0:等待执行 1:分配中 2:正在执行 3:执行完成 /// Nullable:True /// public string Status { get; set; } /// /// Desc:数量 /// Default: /// Nullable:False /// public int Qty {get;set;} /// /// Desc:分配数量 /// Default: /// Nullable:True /// public int? AllotQty {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:是否拆桶出库 /// 1:拆桶 /// 0:不拆 /// Default: /// Nullable:True /// //public string IsDrums { get; set; } /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot {get;set;} /// /// Desc:是否生成波次 //08暂定是否拆桶出库 /// 1:拆桶 正常流程 /// 0:不拆 /// Default: /// Nullable:True /// public string IsWave {get;set;} /// /// Desc:波次单号 /// Default: /// Nullable:True /// public string WaveNo {get;set;} } }