using System; using System.Collections.Generic; using System.Linq; using System.Text; using SqlSugar; using WMS.Entity.SysEntity; namespace WMS.Entity.BllSoEntity { /// ///出库单总表/出库通知单 /// [SugarTable("BLLExportNotice")] public class BllExportNotice:BaseEntity { /// /// Desc:出库单号 /// Default: /// Nullable:True /// public string SONo {get;set;} /// /// Desc:单据类型 /// Default: /// Nullable:True /// public string Type {get;set;} /// /// Desc:状态 /// Default:0:等待执行 1:部分分配 2:已分配 3:正在执行 4:执行完成 5:订单关闭 6已上传(所有物料分配完成后才可点击出库) /// 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;} /// /// Desc:是否生成波次 /// Default: /// Nullable:True /// public string IsWave {get;set;} /// /// Desc:波次单号 /// Default: /// Nullable:True /// public string WaveNo {get;set;} /// /// Desc:是否发运 /// Default: /// Nullable:True /// public string IsDespatch {get;set;} /// /// 完成时间 /// public DateTime? CompleteTime { get; set; } /// /// 上游系统单号 /// public string OrderCode { get; set; } } }