using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.Entitys.Entitys { [Table("tn_wm_b_tray_location")] public class TN_WM_B_TRAY_LOCATIONEntity { [Column("CN_S_TRAY_CODE")] public string CN_S_TRAY_CODE { get; set; } [Column("CN_S_STOCK_CODE")] public string CN_S_STOCK_CODE { get; set; } [Column("CN_S_STOCK_AREA")] public string CN_S_STOCK_AREA { get; set; } [Column("CN_S_LOCATION_CODE")] public string CN_S_LOCATION_CODE { get; set; } [Column("CN_N_INDEX")] public int CN_N_INDEX { 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; } /// /// 老托盘编码 /// public string CN_S_TRAY_CODE_OLD { get; set; } //暂存 拼接条件 public string sqlWhere { get; set; } public string CN_S_OWNER { get; set; } public string CN_S_ITEM_CODE { get; set; } public string CN_S_FIGURE_NO { get; set; } public string CN_S_MODEL { get; set; } public string CN_S_ITEM_STATE { get; set; } public string CN_S_MEASURE_UNIT { get; set; } public string CN_GUID { get; set; } public string CN_S_IN_AREA_CODE { get; set; } } }