| | |
| | | /// æ¯å¦å¯ä»¥æ£ä¿® |
| | | /// </summary> |
| | | [SugarColumn( IsNullable = true, ColumnDescription = "æ¯å¦å¯ä»¥æ£ä¿®")] |
| | | public bool IsPossible { get; set; } |
| | | public string IsPossible { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ£ä¿®ç¶æ |
| | |
| | | /// æ£ä¿®å¼å§æ¶é´ |
| | | /// </summary> |
| | | [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "æ£ä¿®å¼å§æ¶é´")] |
| | | public DateTime MaintenancStartTime { get; set; } |
| | | public DateTime? MaintenancStartTime { get; set; } |
| | | |
| | | // <summary> |
| | | /// æ£ä¿®ç»ææ¶é´ |
| | | /// </summary> |
| | | [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "æ£ä¿®ç»ææ¶é´")] |
| | | public DateTime MaintenancEendTime { get; set; } |
| | | public DateTime? MaintenancEendTime { get; set; } |
| | | |
| | | |
| | | |