|
@@ -17,7 +17,7 @@ export class FVO_user {
|
|
|
@ApiProperty({ description: '微信小程序id' })
|
|
|
'openid': string = undefined;
|
|
|
@ApiProperty({ description: '昵称' })
|
|
|
- 'nick_name': string = undefined;
|
|
|
+ 'nickname': string = undefined;
|
|
|
@ApiProperty({ description: '姓名' })
|
|
|
'name': string = undefined;
|
|
|
@ApiProperty({ description: '身份证号' })
|
|
@@ -25,9 +25,9 @@ export class FVO_user {
|
|
|
@ApiProperty({ description: '电话' })
|
|
|
'phone': string = undefined;
|
|
|
@ApiProperty({ description: '身份证正面' })
|
|
|
- 'file_one': Array<any> = undefined;
|
|
|
+ 'fileOne': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '身份证反面' })
|
|
|
- 'file_two': Array<any> = undefined;
|
|
|
+ 'fileTwo': Array<any> = undefined;
|
|
|
}
|
|
|
|
|
|
export class QDTO_user extends SearchBase {
|
|
@@ -52,7 +52,7 @@ export class CDTO_user {
|
|
|
'openid': string = undefined;
|
|
|
@ApiProperty({ description: '昵称' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
- 'nick_name': string = undefined;
|
|
|
+ 'nickname': string = undefined;
|
|
|
@ApiProperty({ description: '姓名' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'name': string = undefined;
|
|
@@ -64,10 +64,10 @@ export class CDTO_user {
|
|
|
'phone': string = undefined;
|
|
|
@ApiProperty({ description: '身份证正面' })
|
|
|
@Rule(RuleType['array']().empty(''))
|
|
|
- 'file_one': Array<any> = undefined;
|
|
|
+ 'fileOne': Array<any> = undefined;
|
|
|
@ApiProperty({ description: '身份证反面' })
|
|
|
@Rule(RuleType['array']().empty(''))
|
|
|
- 'file_two': Array<any> = undefined;
|
|
|
+ 'fileTwo': Array<any> = undefined;
|
|
|
}
|
|
|
|
|
|
export class CVO_user extends FVO_user {
|