using HH.WMS.Entitys.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Basic { [Table("tn_wm_b_location_ext")] public class TN_WM_LOCATION_EXTEntity:BaseEntity { [Column("CN_S_STOCK_CODE")] public string CN_S_STOCK_CODE { get; set; } [Column("CN_S_ROW")] public string CN_S_ROW { get; set; } [Column("CN_S_LOCATION_CODE")] public string CN_S_LOCATION_CODE { get; set; } [Column("CN_S_LOCATION_STATE")] public string CN_S_LOCATION_STATE { get; set; } [Column("CN_S_USE_STATE")] public string CN_S_USE_STATE { get; set; } [Column("CN_S_BEF_FAULT_STATE")] public string CN_S_BEF_FAULT_STATE { get; set; } [Column("CN_N_DELIVERY_BEAT")] public int? CN_N_DELIVERY_BEAT { get; set; } [Column("CN_S_CREATOR")] public string CN_S_CREATOR { get; set; } [Column("CN_S_CREATOR_BY")] public string CN_S_CREATOR_BY { get; set; } [Column("CN_T_CREATE")] public DateTime CN_T_CREATE { get; set; } [Column("CN_S_MODIFY")] public string CN_S_MODIFY { get; set; } [Column("CN_S_MODIFY_BY")] public string CN_S_MODIFY_BY { get; set; } [Column("CN_T_MODIFY")] public DateTime? CN_T_MODIFY { get; set; } [Column("CN_S_ROADWAY")] public string CN_S_ROADWAY { get; set; } [Column("CN_S_AREA_CODE")] public string CN_S_AREA_CODE { get; set; } [Column("CN_S_TASK_NO")] public string CN_S_TASK_NO { get; set; } [Column("CN_S_COL")] public string CN_S_COL { get; set; } [Column("CN_S_FLOOR")] public string CN_S_FLOOR { get; set; } } public class TN_WM_LOCATIONCODE_EXT_Entity { public string CN_S_LOCATION_CODE { set; get; } public string CN_S_ROW { set; get; } public string CN_S_COL { set; get; } public string CN_S_FLOOR { set; get; } public DateTime CN_T_CREATE { get; set; } } } //public class TN_WM_LOCATION_EXTEntity : BaseEntity //{ // /// // /// 仓库编号 // /// // public string CN_S_STOCK_CODE // { // set; // get; // } // /// // /// 货位编码 // /// // public string CN_S_LOCATION_CODE // { // set; // get; // } // /// // /// 站点名称 // /// // public string CN_S_LOCATION_NAME // { // set; // get; // } // /// // /// 最大容器数量 // /// // public int CN_N_MAX_STORE_NUM // { // set; // get; // } // /// // /// 是否分区指定 // /// // public string CN_C_IS_DO_PARTITION // { // set; // get; // } // /// // /// 备注 // /// // public string CN_S_NOTE // { // set; // get; // } // /// // /// 是否启用 // /// // public string CN_C_IS_ENABLE // { // set; // get; // } // /// // /// 所属巷道 // /// // public string CN_S_ROADWAY // { // set; // get; // } // /// // /// 排 // /// // public string CN_S_ROW // { // set; // get; // } // /// // /// 列 // /// // public string CN_S_COL // { // set; // get; // } // /// // /// 层 // /// // public string CN_S_FLOOR // { // set; // get; // } // /// // /// 类型 // /// // public string CN_S_TYPE // { // set; // get; // } // /// // /// AGV对照 // /// // public int CN_N_AGV_LOCATION // { // set; // get; // } // /// // /// 创建人 // /// // public string CN_S_CREATOR // { // set; // get; // } // /// // /// 创建人名称 // /// // public string CN_S_CREATOR_BY // { // set; // get; // } // /// // /// 创建日期 // /// // public DateTime CN_T_CREATE // { // set; // get; // } // /// // /// 修改人 // /// // public string CN_S_MODIFY // { // set; // get; // } // /// // /// 修改人名称 // /// // public string CN_S_MODIFY_BY // { // set; // get; // } // /// // /// 修改日期 // /// // public DateTime CN_T_MODIFY // { // set; // get; // } // /// // /// 坐标 // /// // public string CN_S_POSITION // { // set; // get; // } // /// // /// 主键GUID // /// // public string CN_GUID // { // set; // get; // } // /// // /// 系统状态 // /// // public string CN_S_STATUS // { // set; // get; // } // /// // ///状态 // /// // public string CN_S_LOCATION_STATE // { // set; // get; // } // /// // ///状态 // /// // public string CN_S_USE_STATE // { // set; // get; // } // /// // /// 分区编码 // /// // public string CN_S_AREA_CODE { get; set; } // /// // /// 分区编码 // /// // public string CN_S_BEF_FAULT_STATE { get; set; } // /// // /// 分区编码 // /// // public int CN_N_DELIVERY_BEAT { get; set; } //}