12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- import { Body, Controller, Del, Get, Inject, Param, Post, Query } from '@midwayjs/core';
- import { CirelationService } from '../../service/users/cirelation.service';
- import { CVO_cirelation, FVO_cirelation, QVO_cirelation, UVAO_cirelation } from '../../interface/users/cirelation.interface';
- import { ApiResponse, ApiTags, ApiQuery } from '@midwayjs/swagger';
- import { Validate } from '@midwayjs/validate';
- import { BaseController } from '../../frame/BaseController';
- import { omit, pick } from 'lodash';
- import { ErrorCode, ServiceError } from '../../error/service.error';
- import { ServiceUtilService } from '../../service/serviceUtil.service';
- const namePrefix = '企业孵化器关联';
- @ApiTags(['企业孵化器关联'])
- @Controller('/cirelation', { tagName: namePrefix })
- export class cirelationController implements BaseController {
- @Inject()
- service: CirelationService;
- @Inject()
- serviceUtil: ServiceUtilService;
- @Get('/')
- @ApiTags('列表查询')
- @ApiQuery({ name: 'query' })
- @ApiResponse({ type: QVO_cirelation })
- 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('/list')
- async list(@Query() query: object) {
- const qobj = omit(query, ['skip', 'limit']);
- const others = pick(query, ['skip', 'limit']);
- const { data, total } = await this.service.query(qobj, others);
- const list = [];
- for (const i of data) {
- list.push(await this.service.fillName(i));
- }
- return { data: list, total };
- }
- @Get('/:id')
- @ApiTags('单查询')
- @ApiResponse({ type: FVO_cirelation })
- async fetch(@Param('id') id: number) {
- const data = await this.service.fetch({ id });
- const result = new FVO_cirelation(data);
- return result;
- }
- @Post('/', { routerName: `创建${namePrefix}` })
- @ApiTags('创建数据')
- @Validate()
- @ApiResponse({ type: CVO_cirelation })
- async create(@Body() data: object) {
- await this.service.createExamine(data);
- const dbData = await this.service.create(data);
- const result = new CVO_cirelation(dbData);
- return result;
- }
- @Post('/:id', { routerName: `修改${namePrefix}` })
- @ApiTags('修改数据')
- @Validate()
- @ApiResponse({ type: UVAO_cirelation })
- 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);
- this.serviceUtil.fillIdentity(data, 'cirelation');
- 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;
- }
- }
|