集成,总结MES功能
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.
 
 
 
 

33 lines
795 B

  1. namespace BPA.MES.Base.Application.Entitys
  2. {
  3. /// <summary>
  4. /// 名 称 :角色信息
  5. /// 创 建 人 :yangxiao
  6. /// 创建时间 : 2023/1/4 17:32:32
  7. /// 描 述 :
  8. /// </summary>
  9. [SugarTable("sys_role")]
  10. public class RoleEntity : DEntityBase
  11. {
  12. /// <summary>
  13. /// 角色名称
  14. /// </summary>
  15. public string Name { get; set; }
  16. /// <summary>
  17. /// 角色类型 1超级管理员,2其他
  18. /// </summary>
  19. public int? RoleType { get; set; }
  20. /// <summary>
  21. /// 角色描述
  22. /// </summary>
  23. public string Description { get; set; }
  24. /// <summary>
  25. /// 是否删除
  26. /// </summary>
  27. public bool IsDeleted { get; set; }
  28. }
  29. }