|
@@ -30,6 +30,8 @@ export class FVO_sign {
|
|
|
'communication': string = undefined;
|
|
|
@ApiProperty({ description: '电子邮箱' })
|
|
|
'email': string = undefined;
|
|
|
+ @ApiProperty({ description: '报名时间' })
|
|
|
+ 'time': string = undefined;
|
|
|
@ApiProperty({ description: '备注' })
|
|
|
'remark': string = undefined;
|
|
|
}
|
|
@@ -37,7 +39,7 @@ export class FVO_sign {
|
|
|
export class QDTO_sign extends SearchBase {
|
|
|
constructor() {
|
|
|
const like_prop = [];
|
|
|
- const props = ['user', 'match', 'name'];
|
|
|
+ const props = ['user', 'match', 'time', 'name'];
|
|
|
const mapping = [];
|
|
|
super({ like_prop, props, mapping });
|
|
|
}
|
|
@@ -47,6 +49,8 @@ export class QDTO_sign extends SearchBase {
|
|
|
'match': string = undefined;
|
|
|
@ApiProperty({ description: '姓名' })
|
|
|
'name': string = undefined;
|
|
|
+ @ApiProperty({ description: '报名时间' })
|
|
|
+ 'time': string = undefined;
|
|
|
}
|
|
|
|
|
|
export class QVO_sign extends FVO_sign {
|
|
@@ -81,6 +85,9 @@ export class CDTO_sign {
|
|
|
@ApiProperty({ description: '电子邮箱' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'email': string = undefined;
|
|
|
+ @ApiProperty({ description: '报名时间' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'time': string = undefined;
|
|
|
@ApiProperty({ description: '备注' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'remark': string = undefined;
|