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.
|
- namespace BPA.MES.Base.Application.Entitys
- {
- /// <summary>
- /// 名 称 :角色信息
- /// 创 建 人 :yangxiao
- /// 创建时间 : 2023/1/4 17:32:32
- /// 描 述 :
- /// </summary>
- [SugarTable("sys_role")]
- public class RoleEntity : DEntityBase
- {
- /// <summary>
- /// 角色名称
- /// </summary>
- public string Name { get; set; }
-
- /// <summary>
- /// 角色类型 1超级管理员,2其他
- /// </summary>
- public int? RoleType { get; set; }
-
- /// <summary>
- /// 角色描述
- /// </summary>
- public string Description { get; set; }
-
- /// <summary>
- /// 是否删除
- /// </summary>
- public bool IsDeleted { get; set; }
- }
- }
|