import { ALL, Body, Get, Inject, Post, Provide, Query } from '@midwayjs/decorator';
|
import { CoolController, BaseController } from '@cool-midway/core';
|
import { Doutrubine } from '../../entity/doutrubine';
|
import { DoutrubineService } from '../../service/doutrubine';
|
import { DataController } from '../../../base/controller/dataController';
|
/**
|
* 斗轮机信息
|
*/
|
@Provide()
|
@CoolController({
|
api: ['add', 'delete', 'update', 'list','page','info'],
|
entity: Doutrubine,
|
service: DoutrubineService,
|
})
|
export class DoutrubineController extends DataController {
|
@Inject()
|
doutrubineService: DoutrubineService;
|
|
/**
|
* 获得数据
|
*/
|
@Get('/getdata', { summary: '数据接口' })
|
async getData(@Query(ALL) params: any) {
|
return this.ok(await this.dataService.getData(params));
|
}
|
/**
|
* 获得数据
|
*/
|
@Get('/postdata', { summary: '数据接口' })
|
async postData(@Query(ALL) params: any) {
|
return this.ok(await this.dataService.getData(params));
|
}
|
}
|