base_qualityStencil_head.cs
1.27 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
{
[SugarTable("base_qualityStencil_head")]
public partial class base_qualityStencil_head: base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(IsNullable = true)]
public Guid keys { get; set; }
/// <summary>
/// 模板名称
/// </summary>
[SugarColumn(Length = 400, IsNullable = true)]
public string stencilName { get; set; }
/// <summary>
/// 备注
/// </summary>
[SugarColumn(Length = 400, IsNullable = true)]
public string remark { get; set; }
/// <summary>
/// 状态
/// </summary>
[SugarColumn(IsNullable = true)]
public int state { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime createTime { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime updateTime { get; set; }
[SugarColumn(Length = 400, IsNullable = true)]
public string temp1 { get; set; }
[SugarColumn(Length = 400, IsNullable = true)]
public string temp2 { get; set; }
}
}