zs 1 éve
szülő
commit
cf6c15386c
1 módosított fájl, 3 hozzáadás és 1 törlés
  1. 3 1
      src/interface/platform/project.interface.ts

+ 3 - 1
src/interface/platform/project.interface.ts

@@ -41,10 +41,12 @@ export class FVO_project {
 export class QDTO_project extends SearchBase {
   constructor() {
     const like_prop = [];
-    const props = ['name', 'time', 'type', 'maturity', 'skill', 'field', 'cooperate', 'status', 'is_use'];
+    const props = ['user', 'name', 'time', 'type', 'maturity', 'skill', 'field', 'cooperate', 'status', 'is_use'];
     const mapping = [];
     super({ like_prop, props, mapping });
   }
+  @ApiProperty({ description: '平台用户id' })
+  'user': string = undefined;
   @ApiProperty({ description: '名称' })
   'name': string = undefined;
   @ApiProperty({ description: '发布时间' })