1
yanjinhui
2025-06-16 a3b1d7bfe497ca5ece2a51eb15a5534a98b33dcb
ÏîÄ¿´úÂë/ºó¶Ë/ºǫ́¹ÜÀí/WIDESEAWCS_Server/WIDESEAWCS_Model/Models/Telescopic/Dt_MaintenanceTeam.cs
@@ -8,7 +8,7 @@
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_MaintenanceTeam", "检修班组表")] //('数据库表名','数据库表备注')
    [SugarTable("Dt_MaintenanceTeam", "检修班组记录表")] //('数据库表名','数据库表备注')
    public class Dt_MaintenanceTeam : BaseEntity
    {
        /// <summary>
@@ -16,8 +16,6 @@
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int ID { get; set; }
        /// <summary>
        /// è´¦å·
@@ -33,6 +31,17 @@
        /// <summary>
        /// ç­ç»„名
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "班组名")]
        public string TeamName { get; set; }
        /// <summary>
        /// ip地址
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "ip地址")]
        public string IPAddress { get; set; }
        /// <summary>
@@ -41,26 +50,21 @@
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "检修状态")]
        public int MaintenanceStatus { get; set; }
        /// <summary>
        /// ç­ç»„名
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "班组名")]
        public string TeamName { get; set; }
        /// <summary>
        /// ip地址
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "ip地址")]
        public string IPAddress { get; set; }
        /// <summary>
        /// åˆ†é…æ—¶é—´
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "分配时间")]
        public DateTime DistributionTime { get; set; }
        public DateTime? DistributionTime { get; set; }
        /// <summary>
        /// å®Œæˆæ£€ä¿®æ—¶é—´
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "完成检修时间")]
        public DateTime? EndTime { get; set; }