using System; using System.Collections.Generic; using System.Linq; using System.Text; using SqlSugar; using WMS.Entity.SysEntity; namespace WMS.Entity.BllSoEntity { /// ///出库分配表 /// [SugarTable("BllExportAllot")] public class BllExportAllot:BaseEntity { /// /// Desc:出库单号 /// Default: /// Nullable:False /// public string SONo {get;set;} /// /// Desc:波次单号 /// Default: /// Nullable:True /// public string WaveNo {get;set;} /// /// Desc:出库明细号 /// Default: /// Nullable:False /// public int SODetailNo {get;set;} /// /// Desc:库存明细Id /// Default: /// Nullable:False /// public int StockId {get;set;} /// /// Desc:任务号 /// Default: /// Nullable:True /// public string TaskNo { 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 string SkuNo {get;set;} /// /// Desc:物料名称 /// Default: /// Nullable:False /// public string SkuName {get;set;} /// /// Desc:规格 /// Default: /// Nullable:False /// public string Standard {get;set;} /// /// Desc:托盘号 /// Default: /// Nullable:True /// public string PalletNo {get;set;} /// /// Desc:是否裹包 /// Default: /// Nullable:True /// public string IsBale {get;set;} /// /// Desc:是否打带 /// Default: /// Nullable:True /// public string IsBelt {get;set;} /// /// Desc:数量 /// Default: /// Nullable:False /// public decimal Qty {get;set;} /// /// Desc:拣货数量 /// Default: /// Nullable:True /// public decimal? CompleteQty {get;set;} /// /// Desc:状态 /// Default:0 /// Nullable:True /// public string Status {get;set;} /// /// Desc:承运商 /// Default: /// Nullable:True /// public int? LogisticsId {get;set;} /// /// Desc:是否预拣 /// Default: /// Nullable:True /// public string IsAdvance {get;set;} /// /// Desc:出库口 /// Default: /// Nullable:True /// public string OutMode { get; set; } /// /// Desc:装车口 /// Default: /// Nullable:True /// public string LoadingAddre { get; set; } /// /// Desc:拆垛模式 /// Default: /// Nullable:True /// public string UnstackingMode { get; set; } /// /// 是否抽检托 0:否 1:是 /// Default: /// Nullable:True /// public string InspectMark { get; set; } [Navigate(NavigateType.OneToOne, nameof(LogisticsId))] public SysLogisticsInfo LogisticsInfoInfo { get; set; } [Navigate(NavigateType.OneToOne, nameof(CreateUser))] public SysUserInfor CreateUserInfo { get; set; } [Navigate(NavigateType.OneToOne, nameof(UpdateUser))] public SysUserInfor UpdateUserInfo { get; set; } } }