using AngleSharp.Text;
|
using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.DB.Models;
|
|
namespace WIDESEA_Model.Models
|
{
|
[SugarTable(nameof(Dt_CZInfo_mes), "MES车轴信息")]
|
|
public class Dt_CZInfo_mes : BaseEntity
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int ID { get; set; }
|
|
|
|
/// <summary>
|
/// 车轴条码
|
/// </summary>
|
[SugarColumn(Length = 50, ColumnDescription = "车轴条码")]
|
public string CZTM { get; set; }
|
|
/// <summary>
|
/// 维修任务
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 255, ColumnDescription = "维修任务")]
|
public string WXRW { get; set; }
|
|
|
/// <summary>
|
/// 车轴号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车轴号")]
|
public string CZH { get; set; }
|
|
/// <summary>
|
/// 轮对条码
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "轮对条码")]
|
public string LDTM { get; set; }
|
|
/// <summary>
|
/// 状态 1-创建 2-入库 3-输送线完成 (站台给信号后) 4-agv任务下发 5-agv取货完成 6-agv完成
|
/// 直走(11-直走创建 12-直走中 13-直走完成 )
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "状态")]
|
public string CurrentStatue { get; set; }
|
/// <summary>
|
/// 序列号
|
/// </summary>
|
//public string Wheels_SequenceNum { get; set; }
|
|
/// <summary>
|
/// 车型
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车型")]
|
public string CHEXING { get; set; }
|
|
/// <summary>
|
/// 车轴型号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车轴型号")]
|
public string CZXH { get; set; }
|
|
/// <summary>
|
/// 动拖类型
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "动拖类型")]
|
public string MTTYPE { get; set; }
|
|
/// <summary>
|
/// 左轮座直径A1
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径A1")]
|
public string ZLZA1 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径A2
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径A2")]
|
public string ZLZA2 { get; set; }
|
|
/// <左轮座直径A3>
|
/// 轮对号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径A3")]
|
public string ZLZA3 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径A
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径A")]
|
public string ZLZA { get; set; }
|
|
/// <summary>
|
/// 左轮座直径B1
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径B1")]
|
public string ZLZB1 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径B2
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径B2")]
|
public string ZLZB2 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径B3
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径B3")]
|
public string ZLZB3 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径B
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径B")]
|
public string ZLZB { get; set; }
|
|
/// <summary>
|
/// 左轮座直径C1
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径C1")]
|
public string ZLZC1 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径C2
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径C2")]
|
public string ZLZC2 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径C3
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径C3")]
|
public string ZLZC3 { get; set; }
|
|
/// <summary>
|
/// 左轮座直径C
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径C")]
|
public string ZLZC { get; set; }
|
|
/// <summary>
|
/// 右轮座直径A1
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径A1")]
|
public string YLZA1 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径A2
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径A2")]
|
public string YLZA2 { get; set; }
|
|
/// <右轮座直径A3>
|
/// 轮对号
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径A3")]
|
public string YLZA3 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径A
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径A")]
|
public string YLZA { get; set; }
|
|
/// <summary>
|
/// 右轮座直径B1
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径B1")]
|
public string YLZB1 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径B2
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径B2")]
|
public string YLZB2 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径B3
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径B3")]
|
public string YLZB3 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径B
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径B")]
|
public string YLZB { get; set; }
|
|
/// <summary>
|
/// 右轮座直径C1
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径C1")]
|
public string YLZC1 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径C2
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径C2")]
|
public string YLZC2 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径C3
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径C3")]
|
public string YLZC3 { get; set; }
|
|
/// <summary>
|
/// 右轮座直径C
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径C")]
|
public string YLZC { get; set; }
|
|
/// <summary>
|
/// 左轮座直径
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "左轮座直径")]
|
public string ZLZZJ { get; set; }
|
|
/// <summary>
|
/// 右轮座直径
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "右轮座直径")]
|
public string YLZZJ { get; set; }
|
|
/// <summary>
|
/// 左轮座等级
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "左轮座等级")]
|
public string ZLZDJ { get; set; }
|
|
/// <summary>
|
/// 右轮座等级
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "右轮座等级")]
|
public string YLZDJ { get; set; }
|
|
/// <summary>
|
/// agv地址
|
/// </summary>
|
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "agv目标地址")]
|
public string AGVaddres { get; set; }
|
}
|
}
|