招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
749 B

using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 角色的数据权限,数据实体对象
/// </summary>
[Table("sys_role_data")]
public class RoleDataEntity : BaseEntity
{
/// <summary>
/// 角色ID
/// </summary>
public long RoleId { get; set; }
/// <summary>
/// 类型,company-公司,dept-部门,person-个人
/// </summary>
public string DType { get; set; }
/// <summary>
/// 数据数据,部门ID或个人ID
/// </summary>
public string AuthorizeData { get; set; }
}
}