Sys_JobPostAuthority.cs 853 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.System
  7. {
  8. /// <summary>
  9. /// 岗位权限设置
  10. /// </summary>
  11. [SugarTable("Sys_JobPostAuthority")]
  12. public class Sys_JobPostAuthority:EntityBase
  13. {
  14. /// <summary>
  15. /// 岗位表Id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int JpId { get; set; }
  19. /// <summary>
  20. /// 页面权限Id
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int SmId { get; set; }
  24. /// <summary>
  25. /// 页面功能Id
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  28. public int FId { get; set; }
  29. }
  30. }