sys_project_roles.cs
1.31 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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// 项目角色表-基础信息
/// </summary>
[SugarTable("sys_project_roles")]
public partial class sys_project_roles:base_Entity
{
[SugarColumn(IsNullable = true)]
public Guid keys { get; set; }
/// <summary>
/// 角色名称
/// </summary>
[SugarColumn(Length = 50, ColumnDescription = "角色名称", IsNullable = true)]
public string roles_name { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
public DateTime create_time { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "创建人", IsNullable = true)]
public string create_by { get; set; }
/// <summary>
/// 修改时间
/// </summary>
[SugarColumn(ColumnDescription = "修改时间", IsNullable = true)]
public DateTime update_time { get; set; }
/// <summary>
/// 修改人
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "修改人", IsNullable = true)]
public string update_by { get; set; }
}
}