SysDictType.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. namespace catchAdmin\system\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\system\model\SysDictType as Model;
  7. use catcher\exceptions\FailedException;
  8. class SysDictType extends CatchController
  9. {
  10. protected $model;
  11. public function __construct(Model $model)
  12. {
  13. $this->model = $model;
  14. }
  15. /**
  16. * 列表
  17. * @time 2020年12月18日 15:11
  18. * @param Request $request
  19. */
  20. public function index(Request $request) : \think\Response
  21. {
  22. return CatchResponse::paginate($this->model->getList());
  23. }
  24. /**
  25. * 保存信息
  26. * @time 2020年12月18日 15:11
  27. * @param Request $request
  28. */
  29. public function save(Request $request) : \think\Response
  30. {
  31. $params=$request->post();
  32. if ($this->model->where('code', $params['code'])->find()) {
  33. throw new FailedException('唯一编码已存在');
  34. }
  35. return CatchResponse::success($this->model->storeBy($params));
  36. }
  37. /**
  38. * 读取
  39. * @time 2020年12月18日 15:11
  40. * @param $id
  41. */
  42. public function read($id) : \think\Response
  43. {
  44. return CatchResponse::success($this->model->findBy($id));
  45. }
  46. /**
  47. * 更新
  48. * @time 2020年12月18日 15:11
  49. * @param Request $request
  50. * @param $id
  51. */
  52. public function update(Request $request, $id) : \think\Response
  53. {
  54. $params=$request->post();
  55. if ($this->model->where('code', $params['code'])->where('id', '<>',$id)->find()) {
  56. throw new FailedException('唯一编码已存在');
  57. }
  58. return CatchResponse::success($this->model->updateBy($id, $params));
  59. }
  60. /**
  61. * 删除
  62. * @time 2020年12月18日 15:11
  63. * @param $id
  64. */
  65. public function delete($id) : \think\Response
  66. {
  67. return CatchResponse::success($this->model->deleteBy($id,true));
  68. }
  69. }