|
@@ -16,6 +16,10 @@ export class FVO_match {
|
|
|
'name': string = undefined;
|
|
|
@ApiProperty({ description: '类型' })
|
|
|
'type': string = undefined;
|
|
|
+ @ApiProperty({ description: '赛事类型' })
|
|
|
+ 'match_type': string = undefined;
|
|
|
+ @ApiProperty({ description: '路由' })
|
|
|
+ 'href': string = undefined;
|
|
|
@ApiProperty({ description: '组织单位' })
|
|
|
'work': string = undefined;
|
|
|
@ApiProperty({ description: '所属产业' })
|
|
@@ -53,6 +57,10 @@ export class QDTO_match extends SearchBase {
|
|
|
'name': string = undefined;
|
|
|
@ApiProperty({ description: '类型' })
|
|
|
'type': string = undefined;
|
|
|
+ @ApiProperty({ description: '赛事类型' })
|
|
|
+ 'match_type': string = undefined;
|
|
|
+ @ApiProperty({ description: '路由' })
|
|
|
+ 'href': string = undefined;
|
|
|
@ApiProperty({ description: '开始时间' })
|
|
|
'start_time': string = undefined;
|
|
|
@ApiProperty({ description: '结束时间' })
|
|
@@ -89,6 +97,12 @@ export class CDTO_match {
|
|
|
@ApiProperty({ description: '类型' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'type': string = undefined;
|
|
|
+ @ApiProperty({ description: '赛事类型' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'match_type': string = undefined;
|
|
|
+ @ApiProperty({ description: '路由' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'href': string = undefined;
|
|
|
@ApiProperty({ description: '组织单位' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'work': string = undefined;
|