18 lines
381 B
C#
18 lines
381 B
C#
namespace IRaCIS.Core.Domain.Models;
|
|
[Table("Role")]
|
|
public partial class Role : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
|
|
#endregion
|
|
public string RoleName { get; set; } = string.Empty;
|
|
|
|
public string RoleDescription { get; set; } = string.Empty;
|
|
|
|
public int Status { get; set; }
|
|
|
|
[Comment("权限级别")]
|
|
public int PrivilegeLevel { get; set; }
|
|
|
|
}
|