版博士V2.0程序
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.
 
 
 
 

21 lines
420 B

  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Models
  8. {
  9. public class RoleRightMap : BaseTable
  10. {
  11. public int RoleId { get; set; }
  12. public int RightId { get; set; }
  13. /// <summary>
  14. /// 0-无权 1-查看 2-修改
  15. /// </summary>
  16. public int Level { get; set; }
  17. }
  18. }