Files
2023-12-12 14:28:38 +08:00

78 lines
1.7 KiB
C#

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