yanjinhui
2025-06-05 fcd49db2ee33ee2e1d33e5a41e53d9897a8a3b0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int ID { get; set; }
 
        /// <summary>
        /// 账号
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "账号")]
        public string Account {  get; set; }
 
        /// <summary>
        /// 操作人员姓名
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true, ColumnDescription = "操作人员姓名")]
        public string OperatorName { 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(Length = 50, IsNullable = true, ColumnDescription = "检修状态")]
        public int MaintenanceStatus { get; set; }  
 
 
        /// <summary>
        /// 分配时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "分配时间")]
        public DateTime? DistributionTime { get; set; }
 
 
        /// <summary>
        /// 完成检修时间
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "完成检修时间")]
        public DateTime? EndTime { get; set; }
 
 
 
 
 
    }
}