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 int? BoxexQty { get; set; } /// /// Desc:数量 /// Default: /// Nullable:False /// public int Qty { get; set; } /// /// Desc:拣货数量 /// Default: /// Nullable:True /// public int? CompleteQty { get; set; } /// /// Desc:状态 /// Default:0 /// Nullable:True /// public string Status { get; set; } /// /// Desc:承运商 /// Default: /// Nullable:True /// public int? LogisticsId { get; set; } /// /// Desc:是否预拣 //08暂定是否拆桶 /// 1:拆桶 正常流程 /// 0:不拆 /// Default: /// Nullable:True /// public string IsAdvance { get; set; } /// /// Desc:出库口 /// Default: /// Nullable:True /// public string OutMode { 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; } } }