using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Entity.BllMoveEntity { /// ///移库表 /// [SugarTable("BllPalletMove")] public class BllPalletMove:BaseEntity { /// /// Desc:单号 /// Default: /// Nullable:True /// public string PMNo {get;set;} /// /// Desc:移出库房号 /// Default: /// Nullable:True /// public string OutWareHouseNo {get;set;} /// /// Desc:移出库区号 /// Default: /// Nullable:True /// public string OutAreaNo {get;set;} /// /// Desc:移出巷道号 /// Default: /// Nullable:True /// public string OutRoadwayNo {get;set;} /// /// Desc:移出储位号 /// Default: /// Nullable:True /// public string OutLocatNo {get;set;} /// /// Desc:移入库房号 /// Default: /// Nullable:True /// public string InWareHouseNo {get;set;} /// /// Desc:移入库区号 /// Default: /// Nullable:True /// public string InAreaNo {get;set;} /// /// Desc:移入巷道号 /// Default: /// Nullable:True /// public string InRoadwayNo {get;set;} /// /// Desc:移入储位号 /// Default: /// Nullable:True /// public string InLocatNo {get;set;} /// /// Desc:状态 /// Default: /// Nullable:True /// public string Status {get;set;} } }