Job.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. namespace catchAdmin\permissions\controller;
  3. use catchAdmin\permissions\model\Job as JobModel;
  4. use catcher\base\CatchController;
  5. use catcher\base\CatchRequest;
  6. use catcher\CatchResponse;
  7. class Job extends CatchController
  8. {
  9. protected $job;
  10. public function __construct(JobModel $job)
  11. {
  12. $this->job = $job;
  13. }
  14. /**
  15. * 列表
  16. *
  17. * @time 2020年01月09日
  18. * @param CatchRequest $request
  19. * @return \think\response\Json
  20. * @throws \think\db\exception\DbException
  21. */
  22. public function index(): \think\response\Json
  23. {
  24. return CatchResponse::paginate($this->job->getList());
  25. }
  26. /**
  27. * 保存
  28. *
  29. * @time 2020年01月09日
  30. * @param CatchRequest $request
  31. * @return \think\response\Json
  32. */
  33. public function save(CatchRequest $request): \think\response\Json
  34. {
  35. return CatchResponse::success($this->job->storeBy($request->post()));
  36. }
  37. /**
  38. * 更新
  39. *
  40. * @time 2020年01月09日
  41. * @param $id
  42. * @param CatchRequest $request
  43. * @return \think\response\Json
  44. */
  45. public function update($id, CatchRequest $request): \think\response\Json
  46. {
  47. return CatchResponse::success($this->job->updateBy($id, $request->post()));
  48. }
  49. /**
  50. * 删除
  51. *
  52. * @time 2020年01月09日
  53. * @param $id
  54. * @return \think\response\Json
  55. */
  56. public function delete($id): \think\response\Json
  57. {
  58. return CatchResponse::success($this->job->deleteBy($id,true));
  59. }
  60. /**
  61. * 获取所有
  62. *
  63. * @return \think\response\Json
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\DbException
  66. * @throws \think\db\exception\ModelNotFoundException
  67. */
  68. public function getAll()
  69. {
  70. return CatchResponse::success($this->job->field(['id', 'job_name'])->select());
  71. }
  72. }