|
@@ -18,6 +18,8 @@ export class FVO_match {
|
|
|
'type': string = undefined;
|
|
|
@ApiProperty({ description: '赛事类型' })
|
|
|
'match_type': string = undefined;
|
|
|
+ @ApiProperty({ description: '赛事规模' })
|
|
|
+ 'scale': string = undefined;
|
|
|
@ApiProperty({ description: '路由' })
|
|
|
'href': string = undefined;
|
|
|
@ApiProperty({ description: '组织单位' })
|
|
@@ -40,6 +42,8 @@ export class FVO_match {
|
|
|
'brief': string = undefined;
|
|
|
@ApiProperty({ description: '封面' })
|
|
|
'file': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '视频' })
|
|
|
+ 'video': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '赛事状态' })
|
|
|
'match_status': string = undefined;
|
|
|
@ApiProperty({ description: '是否公开' })
|
|
@@ -63,6 +67,8 @@ export class QDTO_match extends SearchBase {
|
|
|
'type': string = undefined;
|
|
|
@ApiProperty({ description: '赛事类型' })
|
|
|
'match_type': string = undefined;
|
|
|
+ @ApiProperty({ description: '赛事规模' })
|
|
|
+ 'scale': string = undefined;
|
|
|
@ApiProperty({ description: '路由' })
|
|
|
'href': string = undefined;
|
|
|
@ApiProperty({ description: '开始时间' })
|
|
@@ -108,6 +114,9 @@ export class CDTO_match {
|
|
|
@ApiProperty({ description: '赛事类型' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'match_type': string = undefined;
|
|
|
+ @ApiProperty({ description: '赛事规模' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'scale': string = undefined;
|
|
|
@ApiProperty({ description: '路由' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'href': string = undefined;
|
|
@@ -141,6 +150,9 @@ export class CDTO_match {
|
|
|
@ApiProperty({ description: '封面' })
|
|
|
@Rule(RuleType['array']().empty(''))
|
|
|
'file': Array<any> = undefined;
|
|
|
+ @ApiProperty({ description: '视频' })
|
|
|
+ @Rule(RuleType['array']().empty(''))
|
|
|
+ 'video': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '赛事状态' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'match_status': string = undefined;
|