|
@@ -9,6 +9,8 @@ export class FVO_user {
|
|
|
id: number = undefined;
|
|
|
@ApiProperty({ description: '账号' })
|
|
|
'account': string = undefined;
|
|
|
+ @ApiProperty({ description: 'openid' })
|
|
|
+ 'openid': string = undefined;
|
|
|
@ApiProperty({ description: '密码' })
|
|
|
'password': string = undefined;
|
|
|
@ApiProperty({ description: '所属产业' })
|
|
@@ -32,6 +34,8 @@ export class FVO_user {
|
|
|
export class QDTO_user {
|
|
|
@ApiProperty({ description: '账号' })
|
|
|
'account': string = undefined;
|
|
|
+ @ApiProperty({ description: 'openid' })
|
|
|
+ 'openid': string = undefined;
|
|
|
@ApiProperty({ description: '昵称' })
|
|
|
'nick_name': string = undefined;
|
|
|
@ApiProperty({ description: '所属产业' })
|
|
@@ -52,6 +56,9 @@ export class QVO_user extends FVO_user {
|
|
|
}
|
|
|
|
|
|
export class CDTO_user {
|
|
|
+ @ApiProperty({ description: 'openid' })
|
|
|
+ @Rule(RuleType['string']().empty(''))
|
|
|
+ 'openid': string = undefined;
|
|
|
@ApiProperty({ description: '账号' })
|
|
|
@Rule(RuleType['string']().empty(''))
|
|
|
'account': string = undefined;
|