#region << 版 本 注 释 >>
|
/*----------------------------------------------------------------
|
* 命名空间:WIDESEAWCS_Model.Models.TaskInfo
|
* 创建者:胡童庆
|
* 创建时间:2024/8/2 16:13:36
|
* 版本:V1.0.0
|
* 描述:
|
*
|
* ----------------------------------------------------------------
|
* 修改人:
|
* 修改时间:
|
* 版本:V1.0.1
|
* 修改说明:
|
*
|
*----------------------------------------------------------------*/
|
#endregion << 版 本 注 释 >>
|
|
using Magicodes.ExporterAndImporter.Core;
|
using SqlSugar;
|
using WIDESEA_Core.DB.Models;
|
|
namespace WIDESEAWCS_Model.Models
|
{
|
[SugarTable(nameof(Dt_StationManager), "站台信息")]
|
public class Dt_StationManager : BaseEntity
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[ImporterHeader(Name = "主键")]
|
[ExporterHeader(DisplayName = "主键")]
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int stationID { get; set; }
|
|
/// <summary>
|
/// 站台类型 1-入库站台 2-出库站台 3-异常排出站台 4-NG工站放料 5-NG工站取料 6-空框入库 7-空框出库
|
/// </summary>
|
[ImporterHeader(Name = "站台类型")]
|
[ExporterHeader(DisplayName = "站台类型")]
|
[SugarColumn(IsNullable = false, ColumnDescription = "站台类型")]
|
public int stationType { get; set; }
|
|
/// <summary>
|
/// 站台名称
|
/// </summary>
|
[ImporterHeader(Name = "站台名称")]
|
[ExporterHeader(DisplayName = "站台名称")]
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站台名称")]
|
public string stationName { get; set; }
|
|
/// <summary>
|
/// 站台状态
|
/// </summary>
|
[ImporterHeader(Name = "站台状态")]
|
[ExporterHeader(DisplayName = "站台状态")]
|
[SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "站台状态")]
|
public string stationStatus { get; set; }
|
|
/// <summary>
|
/// 是否存在任务
|
/// </summary>
|
[ImporterHeader(Name = "是否存在任务")]
|
[ExporterHeader(DisplayName = "是否存在任务")]
|
[SugarColumn(IsNullable = false, ColumnDescription = "是否存在任务")]
|
public string stationHasTask { get; set; }
|
|
/// <summary>
|
/// 线体编号(子设备编号)
|
/// </summary>
|
[ImporterHeader(Name = "线体编号(子设备编号)")]
|
[ExporterHeader(DisplayName = "线体编号(子设备编号)")]
|
[SugarColumn(IsNullable = false, ColumnDescription = "线体编号(子设备编号)")]
|
public string HostName { get; set; }
|
|
///// <summary>
|
///// 起始
|
///// </summary>
|
//[ImporterHeader(Name = "起始")]
|
//[ExporterHeader(DisplayName = "起始")]
|
//[SugarColumn(IsNullable = false, ColumnDescription = "起始)")]
|
//public string StartsWith { get; set; }
|
|
///// <summary>
|
///// 结束
|
///// </summary>
|
//[ImporterHeader(Name = "结束")]
|
//[ExporterHeader(DisplayName = "结束")]
|
//[SugarColumn(IsNullable = false, ColumnDescription = "结束")]
|
//public string EndsWith { get; set; }
|
}
|
}
|