【add】添加RSA公钥字段

This commit is contained in:
mzc5649
2021-04-15 15:12:47 +08:00
parent 6ed87e66da
commit dd0eba5589
@@ -19,6 +19,8 @@ public class SysLoginModel {
private String captcha; private String captcha;
@ApiModelProperty(value = "验证码key") @ApiModelProperty(value = "验证码key")
private String checkKey; private String checkKey;
@ApiModelProperty(value ="RSA公钥")
private String RSAPublicKey;
public String getUsername() { public String getUsername() {
return username; return username;
@@ -51,5 +53,12 @@ public class SysLoginModel {
public void setCheckKey(String checkKey) { public void setCheckKey(String checkKey) {
this.checkKey = checkKey; this.checkKey = checkKey;
} }
public String getRSAPublicKey() {
return RSAPublicKey;
}
public void setRSAPublicKey(String RSAPublicKey) {
this.RSAPublicKey = RSAPublicKey;
}
} }