VW_CurrentUserDevice.cs
2.04 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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("VW_CurrentUserDevice")]
public partial class VW_CurrentUserDevice : base_Entity
{
/// <summary>
/// 用户账号
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "用户账号", IsNullable = false)]
public string userAccount { get; set; }
/// <summary>
/// 客户keys
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "客户keys", IsNullable = false)]
public Guid clientKeys { get; set; }
/// <summary>
/// 项目keys
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "项目keys", IsNullable = false)]
public Guid projectKeys { get; set; }
/// <summary>
/// 项目编码
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "项目编码", IsNullable = false)]
public string projectCode { get; set; }
/// <summary>
/// 项目名称
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "项目名称", IsNullable = false)]
public string projectName { get; set; }
/// <summary>
/// 厂房名称
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "厂房名称", IsNullable = false)]
public string factoryName { get; set; }
/// <summary>
/// 设备类型
/// </summary>
[SugarColumn(Length = 20, ColumnDescription = "设备类型", IsNullable = true)]
public string equipmentTypeName { get; set; }
/// <summary>
/// 设备编码
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "设备编码", IsNullable = false)]
public string equipmentCode { get; set; }
/// <summary>
/// 设备名称
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "设备名称", IsNullable = true)]
public string equipmentName { get; set; }
}
}