|
@@ -36,7 +36,7 @@ export class FVO_expert {
|
|
|
@ApiProperty({ description: '工作类型' })
|
|
|
'work_type': string = undefined;
|
|
|
@ApiProperty({ description: '所属产业' })
|
|
|
- 'industry': string = undefined;
|
|
|
+ 'industry': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '产业类型' })
|
|
|
'industry_type': string = undefined;
|
|
|
@ApiProperty({ description: '职称' })
|
|
@@ -75,7 +75,7 @@ export class QDTO_expert {
|
|
|
@ApiProperty({ description: '工作类型' })
|
|
|
'work_type': string = undefined;
|
|
|
@ApiProperty({ description: '所属产业' })
|
|
|
- 'industry': string = undefined;
|
|
|
+ 'industry': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '产业类型' })
|
|
|
'industry_type': string = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
@@ -135,8 +135,8 @@ export class CDTO_expert {
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'industry_type': string = undefined;
|
|
|
@ApiProperty({ description: '所属产业' })
|
|
|
- @Rule(RuleType['string']().empty(''))
|
|
|
- 'industry': string = undefined;
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
+ 'industry': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '工作类型' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'work_type': string = undefined;
|