|
@@ -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: '发布时间' })
|