menus.controller.ts 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import {
  2. Body,
  3. Controller,
  4. Del,
  5. Get,
  6. Inject,
  7. Param,
  8. Post,
  9. } from '@midwayjs/core';
  10. import { MenusService } from '../../service/system/menus.service';
  11. import { RF } from '../../response/CustomerResponse';
  12. @Controller('/menus')
  13. export class MenusController {
  14. @Inject()
  15. service: MenusService;
  16. @Post('/')
  17. async create(@Body() body) {
  18. const data = await this.service.create(body);
  19. return RF.success(data);
  20. }
  21. @Get('/')
  22. async query() {
  23. const result = await this.service.queryMenu();
  24. return RF.success(result);
  25. }
  26. @Get('/:id')
  27. async fetch(@Param('id') id: string) {
  28. const result = await this.service.fetch({ id });
  29. return RF.success(result);
  30. }
  31. @Post('/:id')
  32. async update(@Param('id') id: string, @Body() body) {
  33. const result = await this.service.update({ id }, body);
  34. return RF.success(result);
  35. }
  36. @Del('/:id')
  37. async delete(@Param('id') id: string) {
  38. await this.service.delete({ id });
  39. return RF.success();
  40. }
  41. }