|
@@ -36,6 +36,8 @@ export class FVO_expert {
|
|
|
'direction': string = undefined;
|
|
|
@ApiProperty({ description: '学历' })
|
|
|
'education': string = undefined;
|
|
|
+ @ApiProperty({ description: '工作单位' })
|
|
|
+ 'work': string = undefined;
|
|
|
@ApiProperty({ description: '职称' })
|
|
|
'title': string = undefined;
|
|
|
@ApiProperty({ description: '简介' })
|
|
@@ -120,6 +122,9 @@ export class CDTO_expert {
|
|
|
@ApiProperty({ description: '学历' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'education': string = undefined;
|
|
|
+ @ApiProperty({ description: '工作单位' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'work': string = undefined;
|
|
|
@ApiProperty({ description: '职称' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'title': string = undefined;
|