zs 1 년 전
부모
커밋
cf6c15386c
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  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 {
 export class QDTO_project extends SearchBase {
   constructor() {
   constructor() {
     const like_prop = [];
     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 = [];
     const mapping = [];
     super({ like_prop, props, mapping });
     super({ like_prop, props, mapping });
   }
   }
+  @ApiProperty({ description: '平台用户id' })
+  'user': string = undefined;
   @ApiProperty({ description: '名称' })
   @ApiProperty({ description: '名称' })
   'name': string = undefined;
   'name': string = undefined;
   @ApiProperty({ description: '发布时间' })
   @ApiProperty({ description: '发布时间' })