using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.BllSoEntity { /// ///波次管理表 /// [SugarTable("BllWaveMage")] public class BllWaveMage:BaseEntity { /// /// Desc:波次单号 /// Default: /// Nullable:False /// public string WaveNo {get;set;} /// /// Desc:状态 /// Default:0 /// Nullable:True /// public string Status {get;set;} /// /// Desc:来源 /// Default: /// Nullable:True /// public string Origin {get;set;} /// /// Desc:客户编号 /// Default: /// Nullable:True /// public string CustomerNo {get;set;} /// /// Desc:客户名称 /// Default: /// Nullable:True /// public string CustomerName {get;set;} /// /// Desc:批次号 /// Default: /// Nullable:True /// public string LotNo {get;set;} /// /// Desc:批次描述 /// Default: /// Nullable:True /// public string LotText {get;set;} /// /// Desc:供货批次 /// Default: /// Nullable:True /// public string SupplierLot {get;set;} /// /// Desc:承运商 /// Default: /// Nullable:True /// public int? LogisticsId {get;set;} } }