daq_client_status.cs
1.39 KB
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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// 客户端状态
/// </summary>
[SugarTable("daq_client_status")]
public partial class daq_client_status:base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 客户端Id
/// </summary>
[SugarColumn(ColumnDescription = "客户端Id", IsNullable = false)]
public Guid clientKeys { get; set; }
/// <summary>
/// 客户端名称
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "客户端名称", IsNullable = true)]
public string clientName { get; set; }
/// <summary>
/// 最后更新时间
/// </summary>
[SugarColumn(ColumnDescription = "最后更新时间", IsNullable = false)]
public DateTime lastSeenDate { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "备注", IsNullable = true)]
public string remark { get; set; }
/// <summary>
/// 项目编号
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "项目编号", IsNullable = true)]
public string projectCode { get; set; }
}
}