网页版推演服务器
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.

20 lines
529 B

3 years ago
using Microsoft.EntityFrameworkCore;
namespace AX.WebDrillServer.Models
{
/// <summary>
/// 角色表
/// </summary>
public class Role : EntityBase
{
[Comment("角色父级Id")]
public string? ParentId { get; set; }
[Comment("角色名称")]
public string? Name { get; set; }
[Comment("角色说明")]
public string? Introductions { get; set; }
[Comment("用户角色关系")]
public ICollection<User_Role>? User_Roles { get; set; }
3 years ago
}
}