controller.api.stub 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace {%namespace%};
  3. use think\Controller;
  4. use think\Request;
  5. class {%className%} extends Controller
  6. {
  7. /**
  8. * 显示资源列表
  9. *
  10. * @return \think\Response
  11. */
  12. public function index{%actionSuffix%}()
  13. {
  14. //
  15. }
  16. /**
  17. * 保存新建的资源
  18. *
  19. * @param \think\Request $request
  20. * @return \think\Response
  21. */
  22. public function save{%actionSuffix%}(Request $request)
  23. {
  24. //
  25. }
  26. /**
  27. * 显示指定的资源
  28. *
  29. * @param int $id
  30. * @return \think\Response
  31. */
  32. public function read{%actionSuffix%}($id)
  33. {
  34. //
  35. }
  36. /**
  37. * 保存更新的资源
  38. *
  39. * @param \think\Request $request
  40. * @param int $id
  41. * @return \think\Response
  42. */
  43. public function update{%actionSuffix%}(Request $request, $id)
  44. {
  45. //
  46. }
  47. /**
  48. * 删除指定资源
  49. *
  50. * @param int $id
  51. * @return \think\Response
  52. */
  53. public function delete{%actionSuffix%}($id)
  54. {
  55. //
  56. }
  57. }