|
@@ -21,13 +21,13 @@ export enum LoginType {
|
|
|
/**登录后token返回参数 */
|
|
|
export class LoginVO {
|
|
|
constructor(data: object) {
|
|
|
- this._id = get(data, '_id');
|
|
|
+ this.id = get(data, 'id');
|
|
|
this.nick_name = get(data, 'nick_name');
|
|
|
this.openid = get(data, 'openid');
|
|
|
this.role = get(data, 'role');
|
|
|
this.is_super = get(data, 'is_super');
|
|
|
}
|
|
|
- _id: string;
|
|
|
+ id: number;
|
|
|
nick_name: string;
|
|
|
openid: string;
|
|
|
role: string;
|
|
@@ -36,8 +36,8 @@ export class LoginVO {
|
|
|
/**修改密码接收对象 */
|
|
|
export class UPwdDTO {
|
|
|
// @ApiProperty({ description: '用户数据id' })
|
|
|
- @Rule(RuleType['string']().required())
|
|
|
- _id: string = undefined;
|
|
|
+ @Rule(RuleType['number']().required())
|
|
|
+ id: number = undefined;
|
|
|
// @ApiProperty({ description: '密码' })
|
|
|
@Rule(RuleType['string']().required())
|
|
|
password: string = undefined;
|