【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; private String captcha;
@ApiModelProperty(value = "验证码key") @ApiModelProperty(value = "验证码key")
private String checkKey; private String checkKey;
@ApiModelProperty(value ="RSA公钥") @ApiModelProperty(value = "RSA公钥")
private String RSAPublicKey; private String rsaPublicKey;
public String getUsername() { public String getUsername() {
return username; return username;
@@ -54,11 +54,11 @@ public class SysLoginModel {
this.checkKey = checkKey; this.checkKey = checkKey;
} }
public String getRSAPublicKey() { public String getRsaPublicKey() {
return RSAPublicKey; return rsaPublicKey;
} }
public void setRSAPublicKey(String RSAPublicKey) { public void setRsaPublicKey(String rsaPublicKey) {
this.RSAPublicKey = RSAPublicKey; this.rsaPublicKey = rsaPublicKey;
} }
} }