|
@@ -24,6 +24,8 @@ export class FVO_competition {
|
|
|
'person_phone': string = undefined;
|
|
|
@ApiProperty({ description: '简介' })
|
|
|
'brief': string = undefined;
|
|
|
+ @ApiProperty({ description: '地址' })
|
|
|
+ 'address': string = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
'is_show': string = undefined;
|
|
|
@ApiProperty({ description: '状态' })
|
|
@@ -74,6 +76,9 @@ export class CDTO_competition {
|
|
|
@ApiProperty({ description: '简介' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'brief': string = undefined;
|
|
|
+ @ApiProperty({ description: '地址' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'address': string = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'is_show': string = undefined;
|