| | |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable("Dt_MaintenanceTeam", "检修班组表")] //('数据库表名','数据库表备注') |
| | | [SugarTable("Dt_MaintenanceTeam", "检修班组记录表")] //('数据库表名','数据库表备注') |
| | | public class Dt_MaintenanceTeam : BaseEntity |
| | | { |
| | | /// <summary> |
| | |
| | | [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "班组名")] |
| | | public string TeamName { get; set; } |
| | | |
| | | [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "ip地址")] |
| | | public string IPAddress { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 分配时间 |
| | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "分配时间")] |
| | | public DateTime DistributionTime { get; set; } |
| | | |
| | | |
| | | |
| | | ///// <summary> |
| | | ///// 完成检修时间 |
| | | ///// </summary> |
| | | //[SugarColumn(IsNullable = true, ColumnDescription = "完成检修时间")] |
| | | //public DateTime EndTime { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |