lrf 1 month ago
parent
commit
3ea6c5f36a
4 changed files with 12 additions and 4 deletions
  1. 3 0
      src/config/config.local.ts
  2. 3 0
      src/config/config.prod.ts
  3. 2 0
      src/entityV2/question.entity.ts
  4. 4 4
      src/frame/Options.ts

+ 3 - 0
src/config/config.local.ts

@@ -19,6 +19,9 @@ export default {
     globalPrefix: '/warter/front/v2/api',
     queryParseMode: 'extended',
   },
+  busboy: {
+    realdir: 'D:\\temp\\shuitou',
+  },
   urlDomain,
   typeorm: {
     dataSource: {

+ 3 - 0
src/config/config.prod.ts

@@ -27,6 +27,9 @@ export default {
       level: 'info'
     }
   },
+  busboy: {
+    realdir: 'D:\\workspace\\upload',
+  },
   urlDomain,
   typeorm: {
     dataSource: {

+ 2 - 0
src/entityV2/question.entity.ts

@@ -38,6 +38,8 @@ export class Question {
   address: string;
   @Column({ comment: '反馈详情' })
   description: string;
+  @Column({ comment: '处理反馈' })
+  deal_desc: string;
   @Column({ comment: '处理状态: 0-未处理;1-已处理', default: '0' })
   deal_status: string
   @Column({ type: 'timestamp', nullable: true, transformer: { from: value => (value ? dayjs(value).format('YYYY-MM-DD HH:mm:ss') : value), to: value => value }, comment: '处理时间' })

+ 4 - 4
src/frame/Options.ts

@@ -21,13 +21,13 @@ export enum LoginType {
 /**登录后token返回参数 */
 export class LoginVO {
   constructor(data: object) {
-    this._id = get(data, '_id');
+    this.id = get(data, 'id');
     this.nick_name = get(data, 'nick_name');
     this.openid = get(data, 'openid');
     this.role = get(data, 'role');
     this.is_super = get(data, 'is_super');
   }
-  _id: string;
+  id: number;
   nick_name: string;
   openid: string;
   role: string;
@@ -36,8 +36,8 @@ export class LoginVO {
 /**修改密码接收对象 */
 export class UPwdDTO {
   // @ApiProperty({ description: '用户数据id' })
-  @Rule(RuleType['string']().required())
-  _id: string = undefined;
+  @Rule(RuleType['number']().required())
+  id: number = undefined;
   // @ApiProperty({ description: '密码' })
   @Rule(RuleType['string']().required())
   password: string = undefined;