SysDictData.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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\SysDictData as sysDictDataModel;
  7. use catcher\exceptions\FailedException;
  8. class SysDictData extends CatchController
  9. {
  10. protected $sysDictDataModel;
  11. public function __construct(SysDictDataModel $sysDictDataModel)
  12. {
  13. $this->sysDictDataModel = $sysDictDataModel;
  14. }
  15. /**
  16. * 列表
  17. * @time 2020年12月18日 16:20
  18. * @param Request $request
  19. */
  20. public function index(Request $request) : \think\Response
  21. {
  22. return CatchResponse::paginate($this->sysDictDataModel->getList());
  23. }
  24. /**
  25. * 保存信息
  26. * @time 2020年12月18日 16:20
  27. * @param Request $request
  28. */
  29. public function save(Request $request) : \think\Response
  30. {
  31. $params=$request->post();
  32. if ($this->sysDictDataModel->where('code', $params['code'])->where('type_id', $params['type_id'])->find()) {
  33. throw new FailedException('唯一编码已存在');
  34. }
  35. return CatchResponse::success($this->sysDictDataModel->storeBy($params));
  36. }
  37. /**
  38. * 读取
  39. * @time 2020年12月18日 16:20
  40. * @param $id
  41. */
  42. public function read($id) : \think\Response
  43. {
  44. return CatchResponse::success($this->sysDictDataModel->findBy($id));
  45. }
  46. /**
  47. * 更新
  48. * @time 2020年12月18日 16:20
  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->sysDictDataModel->where('code', $params['code'])->where('type_id', $params['type_id'])->where('id', '<>',$id)->find()) {
  56. throw new FailedException('唯一编码已存在');
  57. }
  58. return CatchResponse::success($this->sysDictDataModel->updateBy($id, $params));
  59. }
  60. /**
  61. * 删除
  62. * @time 2020年12月18日 16:20
  63. * @param $id
  64. */
  65. public function delete($id) : \think\Response
  66. {
  67. return CatchResponse::success($this->sysDictDataModel->deleteBy($id,true));
  68. }
  69. /**
  70. * 根据Code获取下拉选项
  71. */
  72. public function getOptionsByCode(Request $request)
  73. {
  74. $params=$request->post();
  75. return CatchResponse::success($this->sysDictDataModel->getTypesByCode($params['type']));
  76. }
  77. }