服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
9 天以前 7e73e5df14dce74742abf50383bb8ac37b38012e
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
 
namespace Tiger.Model
{
    /// <summary>
    /// 实体:设备维修记录
    /// </summary>
    [Description("Primary:ID")]
    [DisplayName("设备维修记录")]
    [Serializable]
    [SugarTable("EMS_REPAIR")]
    public class EMS_REPAIR : DbEntityWithAuth
    {
        #region 构造函数
        /// <summary>
        /// 实体:设备维修记录
        /// </summary>
        public EMS_REPAIR() {}
        #endregion
 
        #region 公共属性
        /// <summary>
        /// 设备维修编码
        /// </summary>
        [DisplayName("设备维修编码")]
        public string REPAIR_NO { get; set; }
        /// <summary>
        /// 设备编码
        /// </summary>
        [DisplayName("设备编码")]
        public string EQM_CODE { get; set; }
        /// <summary>
        /// 状态(0Waiting待维修|1Repairing维修中|2Repaired维修完)
        /// </summary>
        [DisplayName("状态(0Waiting待维修|1Repairing维修中|2Repaired维修完)")]
        public int STATUS { get; set; }
        /// <summary>
        /// 故障原因
        /// </summary>
        [DisplayName("故障原因")]
        public string REASON { get; set; }
        /// <summary>
        /// 维修人
        /// </summary>
        [DisplayName("维修人")]
        public string REPAIR_USER { get; set; }
        /// <summary>
        /// 维修开始时间
        /// </summary>
        [DisplayName("维修开始时间")]
        public DateTime BEGIN_TIME { get; set; } = DateTime.MinValue;
        /// <summary>
        /// 维修结束时间
        /// </summary>
        [DisplayName("维修结束时间")]
        public DateTime END_TIME { get; set; } = DateTime.MinValue;
        /// <summary>
        /// 维修详情
        /// </summary>
        [DisplayName("维修详情")]
        public string DETAILS { get; set; }
        /// <summary>
        /// 维修费用
        /// </summary>
        [DisplayName("维修费用")]
        public double COSTS { get; set; }
        /// <summary>
        /// 异常工时
        /// </summary>
        [DisplayName("异常工时")]
        public double HOURS { get; set; }
        /// <summary>
        /// 处理措施
        /// </summary>
        [DisplayName("处理措施")]
        public string MEASURE { get; set; }
        /// <summary>
        /// 处理结果
        /// </summary>
        [DisplayName("处理结果")]
        public string RESULT { get; set; }
        /// <summary>
        /// 备注
        /// </summary>
        [DisplayName("备注")]
        public string REMARK { get; set; }
        #endregion
 
        #region 虚拟属性
        /*例子
        [SugarColumn(IsIgnore = true)]
        public string FieldName { get; set; }
        */
        #endregion
 
        #region 外键属性
        /*例子
        //一对一外键导航
        [Navigate(NavigateType.OneToOne, nameof(ClassAId))]//一对一 ClassAId是EMS_REPAIR类里面的外键ID字段
        public ClassA ClassA { get; set; } //注意禁止手动赋值,只能是null
        //一对多外键导航
        [Navigate(NavigateType.OneToMany, nameof(ClassA.EMS_REPAIRId))]//ClassA表中的EMS_REPAIRId
        public List<ClassA> ClassAList { get; set; }//注意禁止手动赋值,只能是null
        //多对多外键导航
        [Navigate(typeof(MappingClass), nameof(MappingClass.EMS_REPAIRId), nameof(MappingClass.ClassAId))]//注意顺序
        public List<ClassA> ClassAList { get; set; } //注意禁止手动赋值,只能是null
        */
        #endregion
 
        #region 枚举变量
        /*例子
        public enum FieldNames
        {
            [Description("枚举描述0")]
            Enum0,
            [Description("枚举描述1")]
            Enum1,
        }
        */
 
        /// <summary>
        /// 枚举:状态(0Waiting待维修|1Repairing维修中|2Repaired维修完)
        /// </summary>
        public enum STATUSs
        {
            [Description("待维修")]
            Waiting = 0,
            [Description("维修中")]
            Repairing = 1,
            [Description("维修完")]
            Repaired = 2,
        }
        #endregion
 
        #region 公共方法
 
        #endregion
 
    }//endClass
}