Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsElevatorH.part.cs
2023-11-16 11:53:19 +08:00

70 lines
1.5 KiB
C#

using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// WMS电梯设定主表
/// </summary>
public partial class WmsElevatorH
{
[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 enable_mark { get; set; }
}