using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using WIDESEAWCS_Core.DB.Models; namespace WIDESEAWCS_Model.Models { [SugarTable("Dt_MaintenanceTeam", "检修班组记录表")] //('数据库表名','数据库表备注') public class Dt_MaintenanceTeam : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int ID { get; set; } /// /// 账号 /// [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "账号")] public string Account { get; set; } /// /// 操作人员姓名 /// [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "操作人员姓名")] public string OperatorName { get; set; } /// /// 班组名 /// [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "班组名")] public string TeamName { get; set; } /// /// ip地址 /// [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "ip地址")] public string IPAddress { get; set; } /// /// 检修状态 /// [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "检修状态")] public int MaintenanceStatus { get; set; } /// /// 分配时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "分配时间")] public DateTime? DistributionTime { get; set; } /// /// 完成检修时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "完成检修时间")] public DateTime? EndTime { get; set; } } }