赖素文
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("api_workOrder_detail")]
public partial class api_workOrder_detail
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(IsNullable = true)]
public Guid headKeys { get; set; }
/// <summary>
|
赖素文
authored
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/// <summary>
/// 建立时间
/// </summary>
[SugarColumn(ColumnDescription = "建立时间", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// 建立者
/// </summary>
[SugarColumn(Length = 40, ColumnDescription = "建立者", IsNullable = true)]
public string createBy { get; set; }
}
}
|