package com.qianwen.smartman.modules.smis.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
import java.util.Map;
|
import javax.validation.constraints.Email;
|
import javax.validation.constraints.NotBlank;
|
/**
|
* 系统初始化vo(在前端init界面提交的配置数据)
|
*/
|
public class InitSettingVO implements Serializable {
|
private static final long serialVersionUID = 6115052904161316657L;
|
@NotBlank(message = "账号不能为空")
|
@ApiModelProperty("账号")
|
private String account;
|
@NotBlank(message = "密码不能为空")
|
@ApiModelProperty("密码")
|
private String password;
|
@NotBlank(message = "确认密码不能为空")
|
@ApiModelProperty("确认密码")
|
private String confirmPassword;
|
@Email
|
@ApiModelProperty("邮件")
|
private String email;
|
@ApiModelProperty("app集合")
|
private List<Integer> appList;
|
@NotBlank(message = "企业名称不能为空")
|
@ApiModelProperty("企业名称")
|
private String enterpriseName;
|
@ApiModelProperty(name = "ossUrl")
|
private String ossUrl;
|
@ApiModelProperty("access-key")
|
private String accessKey;
|
@ApiModelProperty("secret-key")
|
private String secretKey;
|
@ApiModelProperty("看板地址")
|
private String kanbanUrl;
|
@ApiModelProperty("定时任务地址")
|
private String xxlJobUrl;
|
@ApiModelProperty("DMP链接")
|
private String dmpUrl;
|
@ApiModelProperty("积木报表链接")
|
private String jumuReportUrl;
|
@ApiModelProperty("应用")
|
private Map<String, String> applicationList;
|
|
public void setAccount(final String account) {
|
this.account = account;
|
}
|
|
public void setPassword(final String password) {
|
this.password = password;
|
}
|
|
public void setConfirmPassword(final String confirmPassword) {
|
this.confirmPassword = confirmPassword;
|
}
|
|
public void setEmail(final String email) {
|
this.email = email;
|
}
|
|
public void setAppList(final List<Integer> appList) {
|
this.appList = appList;
|
}
|
|
public void setEnterpriseName(final String enterpriseName) {
|
this.enterpriseName = enterpriseName;
|
}
|
|
public void setOssUrl(final String ossUrl) {
|
this.ossUrl = ossUrl;
|
}
|
|
public void setAccessKey(final String accessKey) {
|
this.accessKey = accessKey;
|
}
|
|
public void setSecretKey(final String secretKey) {
|
this.secretKey = secretKey;
|
}
|
|
public void setKanbanUrl(final String kanbanUrl) {
|
this.kanbanUrl = kanbanUrl;
|
}
|
|
public void setXxlJobUrl(final String xxlJobUrl) {
|
this.xxlJobUrl = xxlJobUrl;
|
}
|
|
public void setDmpUrl(final String dmpUrl) {
|
this.dmpUrl = dmpUrl;
|
}
|
|
public void setJumuReportUrl(final String jumuReportUrl) {
|
this.jumuReportUrl = jumuReportUrl;
|
}
|
|
public void setApplicationList(final Map<String, String> applicationList) {
|
this.applicationList = applicationList;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof InitSettingVO) {
|
InitSettingVO other = (InitSettingVO) o;
|
if (other.canEqual(this)) {
|
Object this$account = getAccount();
|
Object other$account = other.getAccount();
|
if (this$account == null) {
|
if (other$account != null) {
|
return false;
|
}
|
} else if (!this$account.equals(other$account)) {
|
return false;
|
}
|
Object this$password = getPassword();
|
Object other$password = other.getPassword();
|
if (this$password == null) {
|
if (other$password != null) {
|
return false;
|
}
|
} else if (!this$password.equals(other$password)) {
|
return false;
|
}
|
Object this$confirmPassword = getConfirmPassword();
|
Object other$confirmPassword = other.getConfirmPassword();
|
if (this$confirmPassword == null) {
|
if (other$confirmPassword != null) {
|
return false;
|
}
|
} else if (!this$confirmPassword.equals(other$confirmPassword)) {
|
return false;
|
}
|
Object this$email = getEmail();
|
Object other$email = other.getEmail();
|
if (this$email == null) {
|
if (other$email != null) {
|
return false;
|
}
|
} else if (!this$email.equals(other$email)) {
|
return false;
|
}
|
Object this$appList = getAppList();
|
Object other$appList = other.getAppList();
|
if (this$appList == null) {
|
if (other$appList != null) {
|
return false;
|
}
|
} else if (!this$appList.equals(other$appList)) {
|
return false;
|
}
|
Object this$enterpriseName = getEnterpriseName();
|
Object other$enterpriseName = other.getEnterpriseName();
|
if (this$enterpriseName == null) {
|
if (other$enterpriseName != null) {
|
return false;
|
}
|
} else if (!this$enterpriseName.equals(other$enterpriseName)) {
|
return false;
|
}
|
Object this$ossUrl = getOssUrl();
|
Object other$ossUrl = other.getOssUrl();
|
if (this$ossUrl == null) {
|
if (other$ossUrl != null) {
|
return false;
|
}
|
} else if (!this$ossUrl.equals(other$ossUrl)) {
|
return false;
|
}
|
Object this$accessKey = getAccessKey();
|
Object other$accessKey = other.getAccessKey();
|
if (this$accessKey == null) {
|
if (other$accessKey != null) {
|
return false;
|
}
|
} else if (!this$accessKey.equals(other$accessKey)) {
|
return false;
|
}
|
Object this$secretKey = getSecretKey();
|
Object other$secretKey = other.getSecretKey();
|
if (this$secretKey == null) {
|
if (other$secretKey != null) {
|
return false;
|
}
|
} else if (!this$secretKey.equals(other$secretKey)) {
|
return false;
|
}
|
Object this$kanbanUrl = getKanbanUrl();
|
Object other$kanbanUrl = other.getKanbanUrl();
|
if (this$kanbanUrl == null) {
|
if (other$kanbanUrl != null) {
|
return false;
|
}
|
} else if (!this$kanbanUrl.equals(other$kanbanUrl)) {
|
return false;
|
}
|
Object this$xxlJobUrl = getXxlJobUrl();
|
Object other$xxlJobUrl = other.getXxlJobUrl();
|
if (this$xxlJobUrl == null) {
|
if (other$xxlJobUrl != null) {
|
return false;
|
}
|
} else if (!this$xxlJobUrl.equals(other$xxlJobUrl)) {
|
return false;
|
}
|
Object this$dmpUrl = getDmpUrl();
|
Object other$dmpUrl = other.getDmpUrl();
|
if (this$dmpUrl == null) {
|
if (other$dmpUrl != null) {
|
return false;
|
}
|
} else if (!this$dmpUrl.equals(other$dmpUrl)) {
|
return false;
|
}
|
Object this$jumuReportUrl = getJumuReportUrl();
|
Object other$jumuReportUrl = other.getJumuReportUrl();
|
if (this$jumuReportUrl == null) {
|
if (other$jumuReportUrl != null) {
|
return false;
|
}
|
} else if (!this$jumuReportUrl.equals(other$jumuReportUrl)) {
|
return false;
|
}
|
Object this$applicationList = getApplicationList();
|
Object other$applicationList = other.getApplicationList();
|
return this$applicationList == null ? other$applicationList == null : this$applicationList.equals(other$applicationList);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof InitSettingVO;
|
}
|
|
public int hashCode() {
|
Object $account = getAccount();
|
int result = (1 * 59) + ($account == null ? 43 : $account.hashCode());
|
Object $password = getPassword();
|
int result2 = (result * 59) + ($password == null ? 43 : $password.hashCode());
|
Object $confirmPassword = getConfirmPassword();
|
int result3 = (result2 * 59) + ($confirmPassword == null ? 43 : $confirmPassword.hashCode());
|
Object $email = getEmail();
|
int result4 = (result3 * 59) + ($email == null ? 43 : $email.hashCode());
|
Object $appList = getAppList();
|
int result5 = (result4 * 59) + ($appList == null ? 43 : $appList.hashCode());
|
Object $enterpriseName = getEnterpriseName();
|
int result6 = (result5 * 59) + ($enterpriseName == null ? 43 : $enterpriseName.hashCode());
|
Object $ossUrl = getOssUrl();
|
int result7 = (result6 * 59) + ($ossUrl == null ? 43 : $ossUrl.hashCode());
|
Object $accessKey = getAccessKey();
|
int result8 = (result7 * 59) + ($accessKey == null ? 43 : $accessKey.hashCode());
|
Object $secretKey = getSecretKey();
|
int result9 = (result8 * 59) + ($secretKey == null ? 43 : $secretKey.hashCode());
|
Object $kanbanUrl = getKanbanUrl();
|
int result10 = (result9 * 59) + ($kanbanUrl == null ? 43 : $kanbanUrl.hashCode());
|
Object $xxlJobUrl = getXxlJobUrl();
|
int result11 = (result10 * 59) + ($xxlJobUrl == null ? 43 : $xxlJobUrl.hashCode());
|
Object $dmpUrl = getDmpUrl();
|
int result12 = (result11 * 59) + ($dmpUrl == null ? 43 : $dmpUrl.hashCode());
|
Object $jumuReportUrl = getJumuReportUrl();
|
int result13 = (result12 * 59) + ($jumuReportUrl == null ? 43 : $jumuReportUrl.hashCode());
|
Object $applicationList = getApplicationList();
|
return (result13 * 59) + ($applicationList == null ? 43 : $applicationList.hashCode());
|
}
|
|
public String toString() {
|
return "InitSettingVO(account=" + getAccount() + ", password=" + getPassword() + ", confirmPassword=" + getConfirmPassword() + ", email=" + getEmail() + ", appList=" + getAppList() + ", enterpriseName=" + getEnterpriseName() + ", ossUrl=" + getOssUrl() + ", accessKey=" + getAccessKey() + ", secretKey=" + getSecretKey() + ", kanbanUrl=" + getKanbanUrl() + ", xxlJobUrl=" + getXxlJobUrl() + ", dmpUrl=" + getDmpUrl() + ", jumuReportUrl=" + getJumuReportUrl() + ", applicationList=" + getApplicationList() + ")";
|
}
|
|
public String getAccount() {
|
return this.account;
|
}
|
|
public String getPassword() {
|
return this.password;
|
}
|
|
public String getConfirmPassword() {
|
return this.confirmPassword;
|
}
|
|
public String getEmail() {
|
return this.email;
|
}
|
|
public List<Integer> getAppList() {
|
return this.appList;
|
}
|
|
public String getEnterpriseName() {
|
return this.enterpriseName;
|
}
|
|
public String getOssUrl() {
|
return this.ossUrl;
|
}
|
|
public String getAccessKey() {
|
return this.accessKey;
|
}
|
|
public String getSecretKey() {
|
return this.secretKey;
|
}
|
|
public String getKanbanUrl() {
|
return this.kanbanUrl;
|
}
|
|
public String getXxlJobUrl() {
|
return this.xxlJobUrl;
|
}
|
|
public String getDmpUrl() {
|
return this.dmpUrl;
|
}
|
|
public String getJumuReportUrl() {
|
return this.jumuReportUrl;
|
}
|
|
public Map<String, String> getApplicationList() {
|
return this.applicationList;
|
}
|
}
|