package com.qianwen.smartman.modules.system.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
@ApiModel(value = "CustomTemplateFieldRelationVo对象", description = "模板与字段关系表")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/CustomTemplateFieldRelationSubmitVO.class */
|
public class CustomTemplateFieldRelationSubmitVO implements Serializable {
|
@ApiModelProperty("所属租户")
|
private String tenantId;
|
@ApiModelProperty("模板id")
|
private Long templateId;
|
@ApiModelProperty("字段id集合")
|
private List<String> fieldList;
|
@ApiModelProperty("配置类型 1:新建页,2:编辑页,3:查看页,4:工单,5:查询条件")
|
private Integer configType;
|
|
public void setTenantId(final String tenantId) {
|
this.tenantId = tenantId;
|
}
|
|
public void setTemplateId(final Long templateId) {
|
this.templateId = templateId;
|
}
|
|
public void setFieldList(final List<String> fieldList) {
|
this.fieldList = fieldList;
|
}
|
|
public void setConfigType(final Integer configType) {
|
this.configType = configType;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof CustomTemplateFieldRelationSubmitVO) {
|
CustomTemplateFieldRelationSubmitVO other = (CustomTemplateFieldRelationSubmitVO) o;
|
if (other.canEqual(this)) {
|
Object this$templateId = getTemplateId();
|
Object other$templateId = other.getTemplateId();
|
if (this$templateId == null) {
|
if (other$templateId != null) {
|
return false;
|
}
|
} else if (!this$templateId.equals(other$templateId)) {
|
return false;
|
}
|
Object this$configType = getConfigType();
|
Object other$configType = other.getConfigType();
|
if (this$configType == null) {
|
if (other$configType != null) {
|
return false;
|
}
|
} else if (!this$configType.equals(other$configType)) {
|
return false;
|
}
|
Object this$tenantId = getTenantId();
|
Object other$tenantId = other.getTenantId();
|
if (this$tenantId == null) {
|
if (other$tenantId != null) {
|
return false;
|
}
|
} else if (!this$tenantId.equals(other$tenantId)) {
|
return false;
|
}
|
Object this$fieldList = getFieldList();
|
Object other$fieldList = other.getFieldList();
|
return this$fieldList == null ? other$fieldList == null : this$fieldList.equals(other$fieldList);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof CustomTemplateFieldRelationSubmitVO;
|
}
|
|
public int hashCode() {
|
Object $templateId = getTemplateId();
|
int result = (1 * 59) + ($templateId == null ? 43 : $templateId.hashCode());
|
Object $configType = getConfigType();
|
int result2 = (result * 59) + ($configType == null ? 43 : $configType.hashCode());
|
Object $tenantId = getTenantId();
|
int result3 = (result2 * 59) + ($tenantId == null ? 43 : $tenantId.hashCode());
|
Object $fieldList = getFieldList();
|
return (result3 * 59) + ($fieldList == null ? 43 : $fieldList.hashCode());
|
}
|
|
public String toString() {
|
return "CustomTemplateFieldRelationSubmitVO(tenantId=" + getTenantId() + ", templateId=" + getTemplateId() + ", fieldList=" + getFieldList() + ", configType=" + getConfigType() + ")";
|
}
|
|
public String getTenantId() {
|
return this.tenantId;
|
}
|
|
public Long getTemplateId() {
|
return this.templateId;
|
}
|
|
public List<String> getFieldList() {
|
return this.fieldList;
|
}
|
|
public Integer getConfigType() {
|
return this.configType;
|
}
|
}
|