#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 WIDESEAWCS_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>
|
/// 站台类型
|
/// </summary>
|
[ImporterHeader(Name = "站台类型")]
|
[ExporterHeader(DisplayName = "站台类型")]
|
[SugarColumn(IsNullable = true, ColumnDescription = "站台类型")]
|
public int StationType { get; set; }
|
|
/// <summary>
|
/// 零件号地址
|
/// </summary>
|
[ImporterHeader(Name = "零件号地址")]
|
[ExporterHeader(DisplayName = "零件号地址")]
|
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "零件号地址")]
|
public string StationDeviceCode { get; set; }
|
|
/// <summary>
|
/// 巷道号
|
/// </summary>
|
[ImporterHeader(Name = "巷道号")]
|
[ExporterHeader(DisplayName = "巷道号")]
|
[SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "巷道号")]
|
public string Roadway { get; set; }
|
|
/// <summary>
|
/// 放置托盘码 备注
|
/// </summary>
|
[ImporterHeader(Name = "备注")]
|
[ExporterHeader(DisplayName = "备注")]
|
[SugarColumn(IsNullable = true, ColumnDescription = "备注")]
|
public string StationRemark { get; set; }
|
|
/// <summary>
|
/// 叫料号地址
|
/// </summary>
|
[ImporterHeader(Name = "叫料号地址")]
|
[ExporterHeader(DisplayName = "叫料号地址")]
|
[SugarColumn(IsNullable = true, ColumnDescription = "叫料号地址")]
|
public string StationChildCode { get; set; }
|
|
/// <summary>
|
/// 设备区域
|
/// </summary>
|
[ImporterHeader(Name = "设备区域")]
|
[ExporterHeader(DisplayName = "设备区域")]
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "设备区域")]
|
public string StationArea { get; set; }
|
|
/// <summary>
|
/// 坐标地址
|
/// </summary>
|
[ImporterHeader(Name = "坐标地址")]
|
[ExporterHeader(DisplayName = "坐标地址")]
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "坐标地址")]
|
public string StationLocation { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[ImporterHeader(Name = "备注")]
|
[ExporterHeader(DisplayName = "备注")]
|
[SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "备注")]
|
public string Remark { get; set; }
|
|
/// <summary>
|
/// 设备状态
|
/// </summary>
|
[ImporterHeader(Name = "设备状态")]
|
[ExporterHeader(DisplayName = "设备状态")]
|
[SugarColumn(IsNullable = false, Length = 255, ColumnDescription = "设备状态")]
|
public string StationStatus { get; set; }
|
|
}
|
}
|