GetAuthListResultBean.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace App\Http\Bean\Admin;
  3. /**
  4. * @SWG\Definition(
  5. * )
  6. */
  7. class GetAuthListResultBean
  8. {
  9. /**
  10. * @SWG\Property(
  11. * description="权限名称"
  12. * )
  13. * @var string
  14. */
  15. private $ruleTitle;
  16. /**
  17. * @SWG\Property(
  18. * description="权限路径"
  19. * )
  20. * @var string
  21. */
  22. private $ruleUrl;
  23. /**
  24. * @SWG\Property(
  25. * description="权限类型(0菜单权限1功能权限)"
  26. * )
  27. * @var string
  28. */
  29. private $ruleType;
  30. /**
  31. * @SWG\Property(
  32. * description="上级ID"
  33. * )
  34. * @var string
  35. */
  36. private $rulePid;
  37. /**
  38. * @SWG\Property(
  39. * description="合伙人数据",
  40. * @SWG\Items(
  41. * @SWG\Property(
  42. * property="id",
  43. * type="string",
  44. * description="ID"
  45. * ),
  46. * @SWG\Property(
  47. * property="ruleTitle",
  48. * type="string",
  49. * description="权限名称"
  50. * ),
  51. * @SWG\Property(
  52. * property="ruleUrl",
  53. * type="string",
  54. * description="权限路径"
  55. * ),
  56. * @SWG\Property(
  57. * property="ruleType",
  58. * type="string",
  59. * description="权限类型(0菜单权限1功能权限)"
  60. * ),
  61. * @SWG\Property(
  62. * property="rulePid",
  63. * type="string",
  64. * description="上级ID"
  65. * ),
  66. * @SWG\Property(
  67. * property="son",
  68. * type="string",
  69. * description="子权限"
  70. * )
  71. * )
  72. * )
  73. * @var array
  74. */
  75. private $son;
  76. }