| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using SqlSugar; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.DB.Models; |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | /// <summary> |
| | | /// å··éå· |
| | | ///</summary> |
| | | [SugarTable("Dt_RoadWayInfo")] |
| | | public class Dt_RoadWayInfo : BaseEntity |
| | | [SugarTable(nameof(Dt_RoadwayInfo))] |
| | | public class Dt_RoadwayInfo : BaseEntity |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨:å··éID |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="RoadwayID" ,IsPrimaryKey = true,IsIdentity = true) ] |
| | | public int RoadwayID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨:å··éå· |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="RoadWayNO" ) ] |
| | | public string? RoadWayNO { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨:åºåºID |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="WareAreaID" ) ] |
| | | public int? WareAreaID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨:æ¯å¦å¯ç¨ |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="IsEnable" ) ] |
| | | public bool? IsEnable { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨:夿³¨ |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="Remark" ) ] |
| | | public string? Remark { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨: |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="Spare1" ) ] |
| | | public string? Spare1 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨: |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="Spare2" ) ] |
| | | public string? Spare2 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨: |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="Spare3" ) ] |
| | | public string? Spare3 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨: |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="Spare4" ) ] |
| | | public string? Spare4 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ æ³¨: |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="Spare5" ) ] |
| | | public string? Spare5 { get; set; } |
| | | |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "å··éç¼å·")] |
| | | public string RoadwayNo { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ä»åºä¸»é®")] |
| | | public int AreaId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, DefaultValue = "0", ColumnDescription = "ç¦ç¨ç¶æ")] |
| | | public int EnableStatus { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "设å¤ç¼å·")] |
| | | public string DeviceNo { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "å
¥åºç«å°ç¼å·")] |
| | | public string InStationCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "å åæºå
¥åºç«å°ç¼å·")] |
| | | public string InSCStationCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "åºåºç«å°ç¼å·")] |
| | | public string OutStationCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "å åæºåºåºç«å°ç¼å·")] |
| | | public string OutSCStationCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | } |
| | | |
| | | } |
| | | } |