|
@@ -25,6 +25,9 @@ public class VerifyCodeLoginInfo implements JsonSerializable {
|
|
|
@ApiModelProperty("验证码结果")
|
|
|
private Integer verifyCode;
|
|
|
|
|
|
+ @ApiModelProperty(value = "验证码编号", hidden = true)
|
|
|
+ private String uuid;
|
|
|
+
|
|
|
@ApiModelProperty(value = "客户端IP", hidden = true)
|
|
|
private String clientIp;
|
|
|
|
|
@@ -68,6 +71,14 @@ public class VerifyCodeLoginInfo implements JsonSerializable {
|
|
|
this.verifyCode = verifyCode;
|
|
|
}
|
|
|
|
|
|
+ public String getUuid() {
|
|
|
+ return uuid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUuid(String uuid) {
|
|
|
+ this.uuid = uuid;
|
|
|
+ }
|
|
|
+
|
|
|
public String getClientIp() {
|
|
|
return clientIp;
|
|
|
}
|