From dd0eba558912b00c8a14b213c4780b7c487687db Mon Sep 17 00:00:00 2001 From: mzc5649 <13027087095@163.com> Date: Thu, 15 Apr 2021 15:12:47 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90add=E3=80=91=E6=B7=BB=E5=8A=A0RSA?= =?UTF-8?q?=E5=85=AC=E9=92=A5=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jero/modules/system/model/SysLoginModel.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/model/SysLoginModel.java b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/model/SysLoginModel.java index dce879de..28ecb9ae 100644 --- a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/model/SysLoginModel.java +++ b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/system/model/SysLoginModel.java @@ -19,6 +19,8 @@ public class SysLoginModel { private String captcha; @ApiModelProperty(value = "验证码key") private String checkKey; + @ApiModelProperty(value ="RSA公钥") + private String RSAPublicKey; public String getUsername() { return username; @@ -51,5 +53,12 @@ public class SysLoginModel { public void setCheckKey(String checkKey) { this.checkKey = checkKey; } - + + public String getRSAPublicKey() { + return RSAPublicKey; + } + + public void setRSAPublicKey(String RSAPublicKey) { + this.RSAPublicKey = RSAPublicKey; + } } \ No newline at end of file