【add】添加公钥字段
This commit is contained in:
+6
-6
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user