sys_user_project_roles_rel.cs
1.2 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
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// 用户项目角色关联表 -1个用户对应一个角色
/// </summary>
[SugarTable("sys_user_project_roles_rel")]
public partial class sys_user_project_roles_rel : base_Entity
{
[SugarColumn(IsPrimaryKey = true, IsNullable = false)]
public Guid keys { get; set; }
/// <summary>
/// 用户账号
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "用户账号", IsNullable = true)]
public string account { get; set; }
/// <summary>
/// sys_project_roles角色key
/// </summary>
[SugarColumn(ColumnDescription = "sys_project_roles角色key", IsNullable = true)]
public Guid project_roles_key { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "创建人", IsNullable = true)]
public string createBy { get; set; }
}
}