1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- import { JournalService } from '../../service/platform/journal.service';
- import { CVO_journal, FVO_journal, QVO_journal, UVAO_journal } from '../../interface/platform/journal.interface';
- import { ApiResponse, ApiTags, ApiQuery } from '@midwayjs/swagger';
- import { Validate } from '@midwayjs/validate';
- import { Controller, Inject, Get, Param, Post, Body, Del, Query } from '@midwayjs/core';
- import { omit, pick } from 'lodash';
- import { ServiceError, ErrorCode } from '../../error/service.error';
- import { BaseController } from '../../frame/BaseController';
- const namePrefix = '行研产研';
- @ApiTags(['行研产研'])
- @Controller('/journal', { tagName: namePrefix })
- export class JournalController implements BaseController {
- @Inject()
- service: JournalService;
- @Get('/')
- @ApiTags('列表查询')
- @ApiQuery({ name: 'query' })
- @ApiResponse({ type: QVO_journal })
- async index(@Query() query: object) {
- const qobj = omit(query, ['skip', 'limit']);
- const others: any = pick(query, ['skip', 'limit']);
- others.order = { sort: 'ASC' };
- const result = await this.service.query(qobj, others);
- return result;
- }
- @Get('/:id')
- @ApiTags('单查询')
- @ApiResponse({ type: FVO_journal })
- async fetch(@Param('id') id: number) {
- const data = await this.service.fetch({ id });
- const result = new FVO_journal(data);
- return result;
- }
- @Post('/', { routerName: `创建${namePrefix}` })
- @ApiTags('创建数据')
- @Validate()
- @ApiResponse({ type: CVO_journal })
- async create(@Body() data: object) {
- const dbData = await this.service.create(data);
- const result = new CVO_journal(dbData);
- return result;
- }
- @Post('/:id', { routerName: `修改${namePrefix}` })
- @ApiTags('修改数据')
- @Validate()
- @ApiResponse({ type: UVAO_journal })
- 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);
- 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;
- }
- }
|