|
@@ -40,6 +40,8 @@ export class FVO_project {
|
|
|
'industry': string = undefined;
|
|
|
@ApiProperty({ description: '简介' })
|
|
|
'brief': string = undefined;
|
|
|
+ @ApiProperty({ description: '附件' })
|
|
|
+ 'file': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
'is_use': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
@@ -137,6 +139,9 @@ export class CDTO_project {
|
|
|
@ApiProperty({ description: '所属产业' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'industry': string = undefined;
|
|
|
+ @ApiProperty({ description: '附件' })
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
+ 'file': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'is_use': string = undefined;
|