schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
using SqlSugar;
using System;
using System.ComponentModel;
using System.Linq;
using System.Text;
 
namespace DataEntity.Device
{
    ///<summary>
    ///设备类型表
    ///</summary>
    [SugarTable("t_deviceconfig_type")]
    public partial class DeviceConfigTypeModel
    {
        /// <summary>
        /// 设备类型表主键ID
        /// </summary>           
        [SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
        public string Id { get; set; }
 
        /// <summary>
        /// 项目ID
        /// </summary>           
        [SugarColumn(ColumnName = "ProjectId")]
        public string ProjectId { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>        
        [SugarColumn(ColumnName = "Name")]
        public string Name { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>           
        [SugarColumn(ColumnName = "Remark")]
        public string Remark { get; set; }
 
        /// <summary>
        /// 创建人
        /// </summary>           
        [SugarColumn(ColumnName = "CreatName")]
        public string CreatName { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>          
        [SugarColumn(ColumnName = "CreateTime")]
        public DateTime? CreateTime { get; set; }
 
        /// <summary>
        /// 修改人
        /// </summary>           
        [SugarColumn(ColumnName = "ModifyName")]
        public string ModifyName { get; set; }
 
        /// <summary>
        /// 修改时间
        /// </summary>           
        [SugarColumn(ColumnName = "ModifyTime")]
        public DateTime? ModifyTime { get; set; }
 
    }
}