修改微信授权逻辑

This commit is contained in:
sh
2025-10-20 19:49:28 +08:00
parent 418c22d78d
commit e56a8a285d
8 changed files with 66 additions and 32 deletions

View File

@@ -34,6 +34,10 @@ public class LoginBody
* 加密向量
*/
private String iv;
/**
* 0企业1求职者
*/
private String userType;
public String getUsername()
{
@@ -90,4 +94,12 @@ public class LoginBody
public void setIv(String iv) {
this.iv = iv;
}
public String getUserType() {
return userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
}