using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_Core.Tenants;
|
|
namespace WIDESEAWCS_Model.Models.System
|
{
|
public class AGVStation
|
{
|
/// <summary>
|
/// 站台ID
|
/// </summary>
|
[SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "站台ID")]
|
public int Station_id { get; set; }
|
|
/// <summary>
|
/// 站台编号
|
/// </summary>
|
[SugarColumn( ColumnDescription = "站台编号")]
|
public int Station_code { get; set; }
|
|
/// <summary>
|
/// 站台名称remark
|
/// </summary>
|
[SugarColumn(Length = 50, ColumnDescription = "站台名称")]
|
public string Station_name { get; set; }
|
|
/// <summary>
|
/// 类型
|
/// </summary>
|
[SugarColumn( ColumnDescription = "站台类型")]
|
public int Station_material { get; set; }
|
|
/// <summary>
|
/// 是否启用
|
/// </summary>
|
[SugarColumn( ColumnDescription = "是否启用")]
|
public int Station_enable { get; set; }
|
|
/// <summary>
|
/// 区域
|
/// </summary>
|
[SugarColumn( ColumnDescription = "区域")]
|
public int Station_Area { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[SugarColumn( Length = 50, ColumnDescription = "备注")]
|
public string Station_remark { get; set; }
|
|
|
/// <summary>
|
/// 站台所属设备
|
/// </summary>
|
[SugarColumn(Length = 50, ColumnDescription = "站台所属设备")]
|
public string ChildPosiDeviceCode { get; set; }
|
|
|
|
|
}
|
}
|