sys_soft_error_logs.cs
3.02 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
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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// wcs,agv,wms,等软件错误信息上报IOT
/// </summary>
[SugarTable("sys_soft_error_logs")]
public partial class sys_soft_error_logs : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 客户端唯一标识
/// </summary>
[SugarColumn(ColumnDescription = "客户端唯一标识", IsNullable = true)]
public Guid client_key { get; set; }
/// <summary>
/// 项目编码
/// </summary>
[SugarColumn(Length = 160, ColumnDescription = "项目编码", IsNullable = true)]
public string project_code { get; set; }
/// <summary>
/// 项目名称
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "项目名称", IsNullable = true)]
public string project_name { get; set; }
/// <summary>
/// 类型 wcs, ecs, wms, agv, mts, lmes
/// </summary>
[SugarColumn(Length = 20, ColumnDescription = "类型 wcs, ecs, wms, agv, mts, lmes", IsNullable = true)]
public string types { get; set; }
/// <summary>
/// 仓库区域
/// </summary>
[SugarColumn(Length = 20, ColumnDescription = "仓库区域", IsNullable = true)]
public string area { get; set; }
/// <summary>
/// 错误时间
/// </summary>
[SugarColumn(ColumnDescription = "错误时间", IsNullable = true)]
public DateTime error_time { get; set; }
/// <summary>
/// 错误信息
/// </summary>
[SugarColumn(Length = 5000, ColumnDescription = "错误信息", IsNullable = true)]
public string error_message { get; set; }
/// <summary>
/// 错误等级 other, warn, error
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "错误等级 other, warn, error", IsNullable = true)]
public string error_level { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(Length = 1000, ColumnDescription = "备注", IsNullable = true)]
public string remarks { get; set; }
/// <summary>
/// 备用字段1
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "备用字段1", IsNullable = true)]
public string backup_field1 { get; set; }
[SugarColumn(Length = 200, IsNullable = true)]
public string backup_field2 { get; set; }
[SugarColumn(Length = 200, IsNullable = true)]
public string backup_field3 { get; set; }
[SugarColumn(Length = 200, IsNullable = true)]
public string backup_field4 { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
public DateTime create_time { get; set; }
}
}