using System; using System.Collections.Generic; using System.Text; namespace WMS.Entity.SysEntity { /// /// 巷道使用记录表 /// public class SysRoadwayUseLog:BaseEntity { /// /// 储位号 /// Default: /// Nullable:True /// public string LocateNo { get; set; } /// /// 巷道号 /// Default: /// Nullable:True /// public string RoadwayNo { get; set; } /// /// 所属仓库 /// Default: /// Nullable:True /// public string WareHouseNo { get; set; } /// /// 深度 两位数字 /// Default: /// Nullable:True /// public string Depth { get; set; } /// /// 排 /// Default: /// Nullable:False /// public int Row { get; set; } /// /// 列 /// Default: /// Nullable:False /// public int Column { get; set; } /// /// 层 /// Default: /// Nullable:False /// public int Layer { get; set; } } }