using SqlSugar; using System; namespace Uninpho.DBOperation.Model { public class T_jgjdistance_table { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public string Id { get; set; } /// /// 辙叉号 /// public decimal Zch { get; set; } /// /// 道岔全长 /// public decimal Dcqc { get; set; } /// /// 尖轨尖心轨间距 /// public decimal Gdjxgjj { get; set; } /// /// 速度类型 /// true 高速 /// false 普速 /// public int Sudutype { get; set; } /// /// 这个字段用来判断这条数据是否是保存之后的数据,如果有值,则是,繁殖没有,则在软件关闭时清除无值的这类数据 /// public string Isnew { get; set; } } }