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.
47 lines
1.1 KiB
47 lines
1.1 KiB
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 角色表,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_role")]
|
|
public class RoleEntityEntity : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 组织主键
|
|
/// </summary>
|
|
public long OrganizeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 角色编码
|
|
/// </summary>
|
|
public string EnCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string FullName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类型
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序码
|
|
/// </summary>
|
|
public long SortCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 有效标志
|
|
/// </summary>
|
|
public bool IsEnabled { get; set; }
|
|
}
|
|
}
|