zs 2 hafta önce
ebeveyn
işleme
3684210112

+ 2 - 0
src/config/config.default.ts

@@ -24,6 +24,8 @@ export default {
     '/dictType',
     '/files/*',
     '/config',
+    '/degree',
+    '/result',
     '/files/:project/upload',
     '/files/:project/:catalog/upload',
     '/files/:project/:catalog/:item/upload',

+ 48 - 0
src/controller/degree.controller.ts

@@ -0,0 +1,48 @@
+import {
+  Body,
+  Controller,
+  Del,
+  Get,
+  Inject,
+  Param,
+  Post,
+} from '@midwayjs/core';
+import { DegreeService } from '../service/degree.service';
+import { RF } from '../response/CustomerResponse';
+import { Page, Query } from '../decorator/page.decorator';
+
+@Controller('/degree')
+export class DegreeController {
+  @Inject()
+  service: DegreeService;
+
+  @Post('/')
+  async create(@Body() body) {
+    const data = await this.service.create(body);
+    return RF.success(data);
+  }
+
+  @Get('/')
+  async query(@Query() query, @Page() page) {
+    const result = await this.service.query(query, page);
+    return RF.success(result);
+  }
+
+  @Get('/:id')
+  async fetch(@Param('id') id: number) {
+    const result = await this.service.fetch({ id });
+    return RF.success(result);
+  }
+
+  @Post('/:id')
+  async update(@Param('id') id: number, @Body() body) {
+    const result = await this.service.update({ id }, body);
+    return RF.success(result);
+  }
+
+  @Del('/:id')
+  async delete(@Param('id') id: number) {
+    await this.service.delete({ id });
+    return RF.success();
+  }
+}

+ 48 - 0
src/controller/result.controller.ts

@@ -0,0 +1,48 @@
+import {
+  Body,
+  Controller,
+  Del,
+  Get,
+  Inject,
+  Param,
+  Post,
+} from '@midwayjs/core';
+import { ResultService } from '../service/result.service';
+import { RF } from '../response/CustomerResponse';
+import { Page, Query } from '../decorator/page.decorator';
+
+@Controller('/result')
+export class resultController {
+  @Inject()
+  service: ResultService;
+
+  @Post('/')
+  async create(@Body() body) {
+    const data = await this.service.create(body);
+    return RF.success(data);
+  }
+
+  @Get('/')
+  async query(@Query() query, @Page() page) {
+    const result = await this.service.query(query, page);
+    return RF.success(result);
+  }
+
+  @Get('/:id')
+  async fetch(@Param('id') id: number) {
+    const result = await this.service.fetch({ id });
+    return RF.success(result);
+  }
+
+  @Post('/:id')
+  async update(@Param('id') id: number, @Body() body) {
+    const result = await this.service.update({ id }, body);
+    return RF.success(result);
+  }
+
+  @Del('/:id')
+  async delete(@Param('id') id: number) {
+    await this.service.delete({ id });
+    return RF.success();
+  }
+}

+ 14 - 0
src/entity/degree.entity.ts

@@ -0,0 +1,14 @@
+import { Column, Entity } from 'typeorm';
+import { BaseModel } from '../frame/BaseModel';
+
+@Entity('degree', { comment: '满意度调查设置' })
+export class Degree extends BaseModel {
+  @Column({ comment: '标题' })
+  title: string;
+  @Column({ comment: '描述' })
+  brief: string;
+  @Column({ type: 'json', nullable: true, comment: '问题' })
+  problem: any;
+  @Column({ comment: '是否启用: 0-启用;1-禁用', default: '0' })
+  is_use: string;
+}

+ 12 - 0
src/entity/result.entity.ts

@@ -0,0 +1,12 @@
+import { Column, Entity } from 'typeorm';
+import { BaseModel } from '../frame/BaseModel';
+
+@Entity('result', { comment: '满意度调查结果' })
+export class Result extends BaseModel {
+  @Column({ comment: '用户id', nullable: true })
+  user_id: string;
+  @Column({ comment: '客户名称', nullable: true })
+  name: string;
+  @Column({ type: 'json', nullable: true, comment: '答案' })
+  problem: any;
+}

+ 7 - 2
src/entity/system/dictData.entity.ts

@@ -10,6 +10,11 @@ export class DictData extends BaseModel {
   value: string;
   @Column({ type: 'int', nullable: true, comment: '排序' })
   sort: number;
-  @Column({ type: 'varchar', default: '0', nullable: true, comment: '是否使用:0:使用;1禁用' })
+  @Column({
+    type: 'varchar',
+    default: '0',
+    nullable: true,
+    comment: '是否使用:0:使用;1禁用',
+  })
   is_use: string;
-}
+}

+ 11 - 0
src/service/degree.service.ts

@@ -0,0 +1,11 @@
+import { InjectEntityModel } from '@midwayjs/typeorm';
+import { Repository } from 'typeorm';
+import { BaseService } from '../frame/BaseService';
+import { Provide } from '@midwayjs/core';
+import { Degree } from '../entity/degree.entity';
+
+@Provide()
+export class DegreeService extends BaseService {
+  @InjectEntityModel(Degree)
+  model: Repository<Degree>;
+}

+ 11 - 0
src/service/result.service.ts

@@ -0,0 +1,11 @@
+import { InjectEntityModel } from '@midwayjs/typeorm';
+import { Repository } from 'typeorm';
+import { BaseService } from '../frame/BaseService';
+import { Provide } from '@midwayjs/core';
+import { Result } from '../entity/result.entity';
+
+@Provide()
+export class ResultService extends BaseService {
+  @InjectEntityModel(Result)
+  model: Repository<Result>;
+}