column.js 628 B

1234567891011121314151617181920212223
  1. 'use strict';
  2. const Controller = require('egg').Controller;
  3. class ColumnController extends Controller {
  4. async create() {
  5. const res = await this.ctx.service.column.create(this.ctx.request.body);
  6. this.ctx.body = res;
  7. }
  8. async update() {
  9. const res = await this.ctx.service.column.update(this.ctx.request.body);
  10. this.ctx.body = res;
  11. }
  12. async delete() {
  13. const res = await this.ctx.service.column.delete(this.ctx.params);
  14. this.ctx.body = res;
  15. }
  16. async query() {
  17. const res = await this.ctx.service.column.query(this.ctx.query);
  18. this.ctx.body = res;
  19. }
  20. }
  21. module.exports = ColumnController;