123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import { DemandService } from '../../service/platform/demand.service';
- import { CVO_demand, FVO_demand, QVO_demand, UVAO_demand } from '../../interface/platform/demand.interface';
- import { ApiResponse, ApiTags, ApiQuery } from '@midwayjs/swagger';
- import { Validate } from '@midwayjs/validate';
- import { BaseController } from '../../frame/BaseController';
- 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 { Context } from '@midwayjs/koa';
- @ApiTags(['需求'])
- @Controller('/demand')
- export class DemandController implements BaseController {
- @Inject()
- service: DemandService;
- @Inject()
- ctx: Context;
- @Get('/')
- @ApiTags('列表查询')
- @ApiQuery({ name: 'query' })
- @ApiResponse({ type: QVO_demand })
- async index(@Query() query: object) {
- const qobj = omit(query, ['skip', 'limit']);
- const others = pick(query, ['skip', 'limit']);
- const qbr = this.service.queryBuilder(qobj);
- const result = await this.service.query(qbr, others);
- return result;
- }
- @Get('/:id')
- @ApiTags('单查询')
- @ApiResponse({ type: FVO_demand })
- async fetch(@Param('id') id: number) {
- const qbr = this.service.queryBuilder({ id });
- const data = await this.service.fetch(qbr);
- const result = new FVO_demand(data);
- return result;
- }
- @Post('/')
- @ApiTags('创建数据')
- @Validate()
- @ApiResponse({ type: CVO_demand })
- async create(@Body() data: object) {
- const dbData = await this.service.create(data);
- const result = new CVO_demand(dbData);
- return result;
- }
- @Post('/:id')
- @ApiTags('修改数据')
- @Validate()
- @ApiResponse({ type: UVAO_demand })
- 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')
- @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;
- }
- @Get('/list')
- async list() {
- const list = await this.service.list(this.ctx.filter);
- const data = list.data;
- const total = list.total;
- return { data, total };
- }
- @Get('/detail/:id')
- @ApiResponse({ type: FVO_demand })
- async detail(@Param('id') id: string) {
- const data = await this.service.detail(id);
- return data;
- }
- }
|