|
@@ -18,6 +18,8 @@ export class FVO_application {
|
|
|
'match_id': string = undefined;
|
|
|
@ApiProperty({ description: '报名比赛名称' })
|
|
|
'match_name': string = undefined;
|
|
|
+ @ApiProperty({ description: '所属管理员' })
|
|
|
+ 'administrator': string = undefined;
|
|
|
@ApiProperty({ description: '团队id' })
|
|
|
'team_id': string = undefined;
|
|
|
@ApiProperty({ description: '团队名称' })
|
|
@@ -40,6 +42,7 @@ export class QDTO_application extends SearchBase {
|
|
|
const props = [
|
|
|
'match_id',
|
|
|
'match_name',
|
|
|
+ 'administrator',
|
|
|
'team_id',
|
|
|
'team_name',
|
|
|
'num',
|
|
@@ -54,6 +57,8 @@ export class QDTO_application extends SearchBase {
|
|
|
'match_id': string = undefined;
|
|
|
@ApiProperty({ description: '报名比赛名称' })
|
|
|
'match_name': string = undefined;
|
|
|
+ @ApiProperty({ description: '所属管理员' })
|
|
|
+ 'administrator': string = undefined;
|
|
|
@ApiProperty({ description: '团队id' })
|
|
|
'team_id': string = undefined;
|
|
|
@ApiProperty({ description: '团队名称' })
|
|
@@ -82,9 +87,12 @@ export class CDTO_application {
|
|
|
@ApiProperty({ description: '报名比赛名称' })
|
|
|
@Rule(RuleType['string']().allow('', null))
|
|
|
'match_name': string = undefined;
|
|
|
- @ApiProperty({ description: '团队id' })
|
|
|
+ @ApiProperty({ description: '所属管理员' })
|
|
|
@Rule(RuleType['string']().allow('', null))
|
|
|
'team_id': string = undefined;
|
|
|
+ @ApiProperty({ description: '团队id' })
|
|
|
+ @Rule(RuleType['string']().allow('', null))
|
|
|
+ 'administrator': string = undefined;
|
|
|
@ApiProperty({ description: '团队名称' })
|
|
|
@Rule(RuleType['string']().allow('', null))
|
|
|
'team_name': string = undefined;
|