forked from tengge1/DTcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager_role_value.cs
52 lines (51 loc) · 1.17 KB
/
manager_role_value.cs
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;
namespace DTcms.Model
{
/// <summary>
/// 管理角色权限表
/// </summary>
[Serializable]
public partial class manager_role_value
{
public manager_role_value()
{ }
#region Model
private int _id;
private int _role_id = 0;
private string _nav_name = string.Empty;
private string _action_type = string.Empty;
/// <summary>
/// 自增ID
/// </summary>
public int id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
/// 角色ID
/// </summary>
public int role_id
{
set { _role_id = value; }
get { return _role_id; }
}
/// <summary>
/// 导航名称
/// </summary>
public string nav_name
{
set { _nav_name = value; }
get { return _nav_name; }
}
/// <summary>
/// 权限类型
/// </summary>
public string action_type
{
set { _action_type = value; }
get { return _action_type; }
}
#endregion
}
}