daq_client_config.cs
2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using Hh.Mes.POJO.Entity;
using SqlSugar;
using System;
namespace Hh.Mes.POJO.WebEntity.configure
{
/// <summary>
/// 客户端配置信息
/// </summary>
[SugarTable("daq_client_config")]
public partial class daq_client_config : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public Guid id { get; set; }
/// <summary>
/// 客户端名称
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "客户端名称", IsNullable = true)]
public string name { get; set; }
/// <summary>
/// 客户端类型
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "客户端类型", IsNullable = true)]
public string type { get; set; }
/// <summary>
/// 项目编号
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "项目编号", IsNullable = true)]
public string projectCode { get; set; }
/// <summary>
/// 仓库编号
/// </summary>
[SugarColumn(Length = 510, ColumnDescription = "仓库编号", IsNullable = true)]
public string factoryCode { 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(ColumnDescription = "创建时间", IsNullable = true)]
public DateTime created { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "创建人", IsNullable = true)]
public string createdBy { get; set; }
}
}