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_InWheels_mes), "MES车轮信息")] public class Dt_InWheels_mes : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Wheels_ID { get; set; } /// /// 车轮号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车轮条码")] public string Wheels_code { get; set; } /// /// 类别 (车轮/ 制动盘) /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "类别(车轮/制动盘)")] public string Wheels_Type { get; set; } /// /// 状态 1-创建 2-入库 3-完成 4-删除 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "状态")] public string Wheels_CurrentStatue { get; set; } /// /// 序列号 /// //public string Wheels_SequenceNum { get; set; } /// /// 车轮条码 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车轮条码")] public string Wheels_Num { get; set; } /// /// 轮对条码 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "轮对条码")] public string Wheels_ldtm { get; set; } /// /// 车型 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "车型")] public string Wheels_CarType { get; set; } /// /// 配属局 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "配属局")] public string Wheels_psj { get; set; } /// /// 车组号 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "车组号")] public string Wheels_CarNo { get; set; } /// /// 轮对号 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "轮对号")] public string Wheels_ldh { get; set; } /// /// 轮对型号 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "轮对型号")] public string Wheels_ldxh { get; set; } /// /// 动拖属性M:动,T:拖 M/T:动拖通用 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "动拖属性")] public string Wheels_mttype { get; set; } /// /// 新旧属性 1:旧 0 :新 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "新旧类型")] public string Wheels_NewOrOld { get; set; } /// /// 属性 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "车轮属性")] public string WheelsProps { get; set; } /// /// 等级 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "等级")] public string Wheels_level { get; set; } /// /// 毂孔a界面均值 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "毂孔a界面均值")] public string Wheels_gkzja { get; set; } /// /// 毂孔b界面均值 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "毂孔b界面均值")] public string Wheels_gkzjb { get; set; } /// /// 毂孔c界面均值 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "毂孔c界面均值")] public string Wheels_gkzjc { get; set; } /// /// 毂孔均值 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "毂孔均值")] public string Wheels_gkcc { get; set; } /// /// 轮径值 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "轮径值")] public string Wheels_ljz { get; set; } /// /// 预估轮径值 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "预估轮径值")] public string Wheels_ygljz { get; set; } /// /// 入库日期 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "入库日期")] public string Wheels_InDate { get; set; } /// /// 轮缘 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "轮缘")] public string Wheels_LYH { get; set; } } }