bus_implementation_requirements.cs
1.58 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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("bus_implementation_requirements")]
public partial class bus_implementation_requirements : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int iD { get; set; }
/// <summary>
/// 贯彻要求
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "贯彻要求", IsNullable = true)]
public string requirement { get; set; }
/// <summary>
/// 要求描述
/// </summary>
[SugarColumn(Length = 1000, ColumnDescription = "要求描述", IsNullable = true)]
public string description { get; set; }
/// <summary>
/// 责任部门
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "责任部门", IsNullable = true)]
public string responsibleDepartment { get; set; }
/// <summary>
/// 责任人
/// </summary>
[SugarColumn(Length = 400, ColumnDescription = "责任人", IsNullable = true)]
public string responsiblePerson { get; set; }
/// <summary>
/// 贯彻日期
/// </summary>
[SugarColumn(ColumnDescription = "贯彻日期", IsNullable = true)]
public DateTime implementationDate { get; set; }
/// <summary>
/// 状态
/// </summary>
[SugarColumn(Length = 200, ColumnDescription = "状态", IsNullable = true)]
public string status { get; set; }
}
}