123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { Body, Controller, Del, Get, Inject, Param, Post, Query } from '@midwayjs/core';
- import { AssociationService } from '../../service/users/association.service';
- import { CVO_association, FVO_association, QVO_association, UVAO_association } from '../../interface/users/association.interface';
- import { ApiResponse, ApiTags, ApiQuery } from '@midwayjs/swagger';
- import { Validate } from '@midwayjs/validate';
- import { UtilService } from '../../service/util.service';
- import { BaseController } from '../../frame/BaseController';
- import { omit, pick } from 'lodash';
- import { ErrorCode, ServiceError } from '../../error/service.error';
- const namePrefix = '商协会';
- @ApiTags(['商协会'])
- @Controller('/association', { tagName: namePrefix })
- export class AssociationController implements BaseController {
- @Inject()
- service: AssociationService;
- @Inject()
- utilService: UtilService;
- @Get('/')
- @ApiTags('列表查询')
- @ApiQuery({ name: 'query' })
- @ApiResponse({ type: QVO_association })
- async index(@Query() query: object) {
- const qobj = omit(query, ['skip', 'limit']);
- const others = pick(query, ['skip', 'limit']);
- const result = await this.service.query(qobj, others);
- return result;
- }
- @Get('/:id')
- @ApiTags('单查询')
- @ApiResponse({ type: FVO_association })
- async fetch(@Param('id') id: number) {
- const data = await this.service.fetch({ id });
- const result = new FVO_association(data);
- return result;
- }
- @Post('/', { routerName: `创建${namePrefix}` })
- @ApiTags('创建数据')
- @Validate()
- @ApiResponse({ type: CVO_association })
- async create(@Body() data: object) {
- const dbData = await this.service.create(data);
- const result = new CVO_association(dbData);
- return result;
- }
- @Post('/:id', { routerName: `修改${namePrefix}` })
- @ApiTags('修改数据')
- @Validate()
- @ApiResponse({ type: UVAO_association })
- async update(@Param('id') id: number, @Body() data: object) {
- if (!id) throw new ServiceError(ErrorCode.ID_NOT_FOUND);
- const result = await this.service.update({ id }, data);
- await this.utilService.updateUserAfter(id, data, 'Association');
- return result;
- }
- @Del('/:id', { routerName: `删除${namePrefix}` })
- @ApiTags('删除数据')
- @Validate()
- async delete(@Param('id') id: number) {
- if (!id) throw new ServiceError(ErrorCode.ID_NOT_FOUND);
- const result = await this.service.delete({ id });
- return result;
- }
- }
|