forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationRole.cs
More file actions
48 lines (47 loc) · 1.3 KB
/
ApplicationRole.cs
File metadata and controls
48 lines (47 loc) · 1.3 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
using SqlSugar;
using System;
namespace Blog.Core.Model.IDS4DbModels
{
/// <summary>
/// 以下model 来自ids4项目,多库模式,为了调取ids4数据
/// 角色表
/// </summary>
[SugarTable("ApplicationRole", "WMBLOG_MYSQL_2")]
public class ApplicationRole
{
public bool IsDeleted { get; set; }
public string Description { get; set; }
/// <summary>
///排序
/// </summary>
public int OrderSort { get; set; }
/// <summary>
/// 是否激活
/// </summary>
public bool Enabled { get; set; }
/// <summary>
/// 创建ID
/// </summary>
public int? CreateId { get; set; }
/// <summary>
/// 创建者
/// </summary>
public string CreateBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; } = DateTime.Now;
/// <summary>
/// 修改ID
/// </summary>
public int? ModifyId { get; set; }
/// <summary>
/// 修改者
/// </summary>
public string ModifyBy { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? ModifyTime { get; set; } = DateTime.Now;
}
}