验证码调整
This commit is contained in:
@@ -78,9 +78,8 @@ public class Institutions extends JpaBaseEntity implements Serializable {
|
||||
private String consoleTitle;
|
||||
|
||||
@Column
|
||||
private String captchaType;
|
||||
@Column
|
||||
private String captchaSupport;
|
||||
private String captcha;
|
||||
|
||||
@Column
|
||||
private String defaultUri;
|
||||
|
||||
@@ -130,14 +129,6 @@ public class Institutions extends JpaBaseEntity implements Serializable {
|
||||
this.frontTitle = frontTitle;
|
||||
}
|
||||
|
||||
public String getCaptchaType() {
|
||||
return captchaType;
|
||||
}
|
||||
|
||||
public void setCaptchaType(String captchaType) {
|
||||
this.captchaType = captchaType;
|
||||
}
|
||||
|
||||
public String getConsoleDomain() {
|
||||
return consoleDomain;
|
||||
}
|
||||
@@ -259,12 +250,12 @@ public class Institutions extends JpaBaseEntity implements Serializable {
|
||||
}
|
||||
|
||||
|
||||
public String getCaptchaSupport() {
|
||||
return captchaSupport;
|
||||
public String getCaptcha() {
|
||||
return captcha;
|
||||
}
|
||||
|
||||
public void setCaptchaSupport(String captchaSupport) {
|
||||
this.captchaSupport = captchaSupport;
|
||||
public void setCaptcha(String captcha) {
|
||||
this.captcha = captcha;
|
||||
}
|
||||
|
||||
public String getDefaultUri() {
|
||||
@@ -310,16 +301,16 @@ public class Institutions extends JpaBaseEntity implements Serializable {
|
||||
builder.append(description);
|
||||
builder.append(", logo=");
|
||||
builder.append(logo);
|
||||
builder.append(", frontTitle=");
|
||||
builder.append(frontTitle);
|
||||
builder.append(", consoleTitle=");
|
||||
builder.append(consoleTitle);
|
||||
builder.append(", domain=");
|
||||
builder.append(domain);
|
||||
builder.append(", captchaType=");
|
||||
builder.append(captchaType);
|
||||
builder.append(", captchaSupport=");
|
||||
builder.append(captchaSupport);
|
||||
builder.append(", frontTitle=");
|
||||
builder.append(frontTitle);
|
||||
builder.append(", consoleDomain=");
|
||||
builder.append(consoleDomain);
|
||||
builder.append(", consoleTitle=");
|
||||
builder.append(consoleTitle);
|
||||
builder.append(", captcha=");
|
||||
builder.append(captcha);
|
||||
builder.append(", defaultUri=");
|
||||
builder.append(defaultUri);
|
||||
builder.append("]");
|
||||
|
||||
@@ -96,8 +96,7 @@ public class InstitutionsRepository {
|
||||
institution.setFrontTitle(rs.getString("fronttitle"));
|
||||
institution.setConsoleDomain(rs.getString("consoledomain"));
|
||||
institution.setConsoleTitle(rs.getString("consoletitle"));
|
||||
institution.setCaptchaType(rs.getString("captchatype"));
|
||||
institution.setCaptchaSupport(rs.getString("captchasupport"));
|
||||
institution.setCaptcha(rs.getString("captcha"));
|
||||
institution.setDefaultUri(rs.getString("defaultUri"));
|
||||
return institution;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user