Config.php 2.2 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\sms\controller;
  12. use catcher\base\CatchRequest as Request;
  13. use catcher\CatchResponse;
  14. use catcher\base\CatchController;
  15. use catchAdmin\sms\model\SmsConfig as SmsConfigModel;
  16. class Config extends CatchController
  17. {
  18. protected $model;
  19. public function __construct(SmsConfigModel $model)
  20. {
  21. $this->model = $model;
  22. }
  23. /**
  24. * 列表
  25. *
  26. * @time 2020/09/16 17:28
  27. *
  28. * @return \think\Response
  29. */
  30. public function index()
  31. {
  32. return CatchResponse::paginate($this->model->getList());
  33. }
  34. /**
  35. * 保存
  36. *
  37. * @time 2020/09/16 17:28
  38. * @param Request Request
  39. * @return \think\Response
  40. */
  41. public function save(Request $request)
  42. {
  43. return CatchResponse::success($this->model->storeBy($request->param()));
  44. }
  45. /**
  46. * 读取
  47. *
  48. * @time 2020/09/16 17:28
  49. * @param $id
  50. * @return \think\Response
  51. */
  52. public function read($id)
  53. {
  54. return CatchResponse::success($this->model->findBy($id));
  55. }
  56. /**
  57. * 更新
  58. *
  59. * @time 2020/09/16 17:28
  60. * @param Request $request
  61. * @return \think\Response
  62. */
  63. public function update(Request $request, $id)
  64. {
  65. return CatchResponse::success($this->model->updateBy($id, $request->post()));
  66. }
  67. /**
  68. * 删除
  69. *
  70. * @time 2020/09/16 17:28
  71. * @param $id
  72. * @return \think\Response
  73. */
  74. public function delete($id)
  75. {
  76. return CatchResponse::success($this->model->deleteBy($id));
  77. }
  78. }