xiaojiao
2 天以前 2c69e642303e9f9c3b2e37194c4c6cdf7e1b3001
ÏîÄ¿´úÂë/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_StationManager.cs
@@ -30,47 +30,47 @@
        [ImporterHeader(Name = "主键")]
        [ExporterHeader(DisplayName = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int stationID { get; set; }
        public int StationID { get; set; }
        /// <summary>
        /// ç«™å°ç±»åž‹
        /// </summary>
        [ImporterHeader(Name = "站台类型")]
        [ExporterHeader(DisplayName = "站台类型")]
        [SugarColumn(IsNullable = false, ColumnDescription = "站台类型")]
        public int stationType { get; set; }
        [SugarColumn(IsNullable = true, ColumnDescription = "站台类型")]
        public int StationType { get; set; }
        /// <summary>
        /// æ‰€å±žPLC
        /// </summary>
        [ImporterHeader(Name = "所属PLC")]
        [ExporterHeader(DisplayName = "所属PLC")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "所属PLC")]
        public string stationDeviceCode { get; set; }
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "所属PLC")]
        public string StationDeviceCode { get; set; }
        /// <summary>
        /// å··é“号
        /// </summary>
        [ImporterHeader(Name = "巷道号")]
        [ExporterHeader(DisplayName = "巷道号")]
        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "巷道号")]
        [SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "巷道号")]
        public string Roadway { get; set; }
        /// <summary>
        /// å¤‡æ³¨
        /// æ”¾ç½®æ‰˜ç›˜ç  å¤‡æ³¨
        /// </summary>
        [ImporterHeader(Name = "备注")]
        [ExporterHeader(DisplayName = "备注")]
        [SugarColumn(IsNullable = false, ColumnDescription = "备注")]
        public string stationRemark { get; set; }
        [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
        public string StationRemark { get; set; }
        /// <summary>
        /// çº¿ä½“编号(子设备编号)
        /// </summary>
        [ImporterHeader(Name = "线体编号(子设备编号)")]
        [ExporterHeader(DisplayName = "线体编号(子设备编号)")]
        [SugarColumn(IsNullable = false, ColumnDescription = "线体编号(子设备编号)")]
        public string stationChildCode { get; set; }
        [SugarColumn(IsNullable = true, ColumnDescription = "线体编号(子设备编号)")]
        public string StationChildCode { get; set; }
        /// <summary>
        /// è®¾å¤‡åŒºåŸŸ
@@ -78,7 +78,7 @@
        [ImporterHeader(Name = "设备区域")]
        [ExporterHeader(DisplayName = "设备区域")]
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "设备区域")]
        public string stationArea { get; set; }
        public string StationArea { get; set; }
        /// <summary>
        /// åæ ‡åœ°å€
@@ -86,9 +86,15 @@
        [ImporterHeader(Name = "坐标地址")]
        [ExporterHeader(DisplayName = "坐标地址")]
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "坐标地址")]
        public string stationLocation { get; set; }
        public string StationLocation { get; set; }
        public string remark { get; set; }
        /// <summary>
        /// å¤‡æ³¨
        /// </summary>
        [ImporterHeader(Name = "备注")]
        [ExporterHeader(DisplayName = "备注")]
        [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "备注")]
        public string Remark { get; set; }
        /// <summary>
        /// è®¾å¤‡çŠ¶æ€
@@ -96,15 +102,7 @@
        [ImporterHeader(Name = "设备状态")]
        [ExporterHeader(DisplayName = "设备状态")]
        [SugarColumn(IsNullable = false, Length = 255, ColumnDescription = "设备状态")]
        public string stationStatus { get; set; }
        /// <summary>
        /// æ¥¼å±‚
        /// </summary>
        [ImporterHeader(Name = "楼层")]
        [ExporterHeader(DisplayName = "楼层")]
        [SugarColumn(IsNullable = false, Length = 255, ColumnDescription = "楼层")]
        public string stationFloor { get; set; }
        public string StationStatus { get; set; }
    }
}