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.
17 lines
425 B
17 lines
425 B
using Microsoft.EntityFrameworkCore; |
|
|
|
namespace AX.WebDrillServer.Models |
|
{ |
|
/// <summary> |
|
/// 权限表 |
|
/// </summary> |
|
public class Premission : EntityBase |
|
{ |
|
[Comment("权限Id")] |
|
public string? ParentId { get; set; } |
|
[Comment("权限名称")] |
|
public string? Name { get; set; } |
|
[Comment("权限说明")] |
|
public string? Introductions { get; set; } |
|
} |
|
}
|
|
|