【add】添加公钥字段

This commit is contained in:
mzc5649
2021-04-16 13:14:58 +08:00
parent dd0eba5589
commit 01724b904e
@@ -19,8 +19,8 @@ public class SysLoginModel {
private String captcha;
@ApiModelProperty(value = "验证码key")
private String checkKey;
@ApiModelProperty(value ="RSA公钥")
private String RSAPublicKey;
@ApiModelProperty(value = "RSA公钥")
private String rsaPublicKey;
public String getUsername() {
return username;
@@ -54,11 +54,11 @@ public class SysLoginModel {
this.checkKey = checkKey;
}
public String getRSAPublicKey() {
return RSAPublicKey;
public String getRsaPublicKey() {
return rsaPublicKey;
}
public void setRSAPublicKey(String RSAPublicKey) {
this.RSAPublicKey = RSAPublicKey;
public void setRsaPublicKey(String rsaPublicKey) {
this.rsaPublicKey = rsaPublicKey;
}
}