22 lines
509 B
C#
22 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
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; }
|
|
public int PrivilegeLevel { get; set; } //权限级别
|
|
|
|
}
|
|
}
|