Menus.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\wechat\controller;
  12. use catchAdmin\wechat\repository\WechatMenusRepository;
  13. use catcher\base\CatchController;
  14. use catcher\base\CatchRequest;
  15. use catcher\CatchResponse;
  16. class Menus extends CatchController
  17. {
  18. protected $menus;
  19. public function __construct(WechatMenusRepository $repository)
  20. {
  21. $this->menus = $repository;
  22. }
  23. /**
  24. * 列表
  25. */
  26. public function index()
  27. {
  28. return CatchResponse::success($this->menus->all());
  29. }
  30. /**
  31. * 保存
  32. *
  33. * @time 2020年06月26日
  34. * @param CatchRequest $request
  35. * @return \think\response\Json
  36. */
  37. public function save(CatchRequest $request)
  38. {
  39. return CatchResponse::success($this->menus->storeBy($request->param()));
  40. }
  41. /**
  42. * 更新
  43. *
  44. * @time 2020年06月26日
  45. * @param $id
  46. * @param CatchRequest $request
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\DbException
  49. * @throws \think\db\exception\ModelNotFoundException
  50. * @return \think\response\Json
  51. */
  52. public function update($id, CatchRequest $request)
  53. {
  54. return CatchResponse::success($this->menus->updateBy($id, $request->param()));
  55. }
  56. /**
  57. * 删除
  58. *
  59. * @time 2020年06月26日
  60. * @param $id
  61. * @throws \think\db\exception\DataNotFoundException
  62. * @throws \think\db\exception\DbException
  63. * @throws \think\db\exception\ModelNotFoundException
  64. * @return \think\response\Json
  65. */
  66. public function delete($id)
  67. {
  68. return CatchResponse::success($this->menus->deleteBy($id));
  69. }
  70. /**
  71. * 同步
  72. *
  73. * @time 2020年06月26日
  74. * @return \think\response\Json
  75. * @throws \Exception
  76. */
  77. public function sync()
  78. {
  79. return CatchResponse::success($this->menus->sync());
  80. }
  81. }