|
@@ -30,6 +30,8 @@ export class FVO_user {
|
|
'role_type': string = undefined;
|
|
'role_type': string = undefined;
|
|
@ApiProperty({ description: '角色' })
|
|
@ApiProperty({ description: '角色' })
|
|
'role': string = undefined;
|
|
'role': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '总学时' })
|
|
|
|
+ 'hour': string = undefined;
|
|
@ApiProperty({ description: '状态' })
|
|
@ApiProperty({ description: '状态' })
|
|
'status': string = undefined;
|
|
'status': string = undefined;
|
|
}
|
|
}
|
|
@@ -82,6 +84,9 @@ export class CDTO_user {
|
|
@ApiProperty({ description: '角色' })
|
|
@ApiProperty({ description: '角色' })
|
|
@Rule(RuleType['string']().empty(''))
|
|
@Rule(RuleType['string']().empty(''))
|
|
'role': string = undefined;
|
|
'role': string = undefined;
|
|
|
|
+ @ApiProperty({ description: '总学时' })
|
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
|
+ 'hour': string = undefined;
|
|
@ApiProperty({ description: '状态' })
|
|
@ApiProperty({ description: '状态' })
|
|
@Rule(RuleType['string']().empty(''))
|
|
@Rule(RuleType['string']().empty(''))
|
|
'status': string = undefined;
|
|
'status': string = undefined;
|