This commit is contained in:
77
2024-04-23 01:28:27 +08:00
parent e4dde712e6
commit 67b73e82bb
7 changed files with 70 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
package com.ruoyi.xq.dto.app.auth;
import lombok.Data;
@Data
public class RegisterCodeCheck {
private String mobile;
private String code;
}

View File

@@ -7,6 +7,6 @@ import lombok.Data;
@Schema(description = "重置密码入参")
public class ResetPasswordReq {
private String mobile;
private String code;
private String password;
private String token;
}