using System.Reflection; using SqlSugar; using Tnb.WarehouseMgr.Entities.Entity.Constraints; namespace Tnb.WarehouseMgr.Entities; /// /// WMS电梯设定主表 /// public partial class WmsElevatorH : IUpdateEnabledEntity { [SugarColumn(IsIgnore = true)] public int end_floor { get; set; } /// /// 上级表单ID /// [SugarColumn(IsIgnore = true)] public string bill_id { get; set; } = string.Empty; /// /// 库位ID /// [SugarColumn(IsIgnore = true)] public string location_id { get; set; } = string.Empty; /// /// 库位编号 /// [SugarColumn(IsIgnore = true)] public string location_code { get; set; } = string.Empty; /// /// 点位ID /// [SugarColumn(IsIgnore = true)] public string point_id { get; set; } = string.Empty; /// /// 点位编号 /// [SugarColumn(IsIgnore = true)] public string point_code { get; set; } = string.Empty; /// /// 楼层 [SugarColumn(IsIgnore = true)] public int floor { get; set; } /// /// 执行任务Id /// [SugarColumn(IsIgnore = true)] public string distask_id { get; set; } /// /// 设备Id /// [SugarColumn(IsIgnore = true)] public string device_id { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "status")] public int enabled { get; set; } /// /// 任务单号 /// [SugarColumn(ColumnName = "status")] public string bill_code { get; set; } }