package com.qianwen.smartman.modules.coproduction.dto;
|
|
import java.util.Map;
|
import com.qianwen.smartman.modules.system.dto.CustomTemplateFieldRelationDTO;
|
import com.qianwen.smartman.modules.system.entity.CustomTemplate;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/dto/CheckParamDTO.class */
|
public class CheckParamDTO {
|
private CustomTemplate customTemplate;
|
private Map<String, CustomTemplateFieldRelationDTO> relationMap;
|
private Map<String, String> specialData;
|
|
public void setCustomTemplate(final CustomTemplate customTemplate) {
|
this.customTemplate = customTemplate;
|
}
|
|
public void setRelationMap(final Map<String, CustomTemplateFieldRelationDTO> relationMap) {
|
this.relationMap = relationMap;
|
}
|
|
public void setSpecialData(final Map<String, String> specialData) {
|
this.specialData = specialData;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof CheckParamDTO) {
|
CheckParamDTO other = (CheckParamDTO) o;
|
if (other.canEqual(this)) {
|
Object this$customTemplate = getCustomTemplate();
|
Object other$customTemplate = other.getCustomTemplate();
|
if (this$customTemplate == null) {
|
if (other$customTemplate != null) {
|
return false;
|
}
|
} else if (!this$customTemplate.equals(other$customTemplate)) {
|
return false;
|
}
|
Object this$relationMap = getRelationMap();
|
Object other$relationMap = other.getRelationMap();
|
if (this$relationMap == null) {
|
if (other$relationMap != null) {
|
return false;
|
}
|
} else if (!this$relationMap.equals(other$relationMap)) {
|
return false;
|
}
|
Object this$specialData = getSpecialData();
|
Object other$specialData = other.getSpecialData();
|
return this$specialData == null ? other$specialData == null : this$specialData.equals(other$specialData);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof CheckParamDTO;
|
}
|
|
public int hashCode() {
|
Object $customTemplate = getCustomTemplate();
|
int result = (1 * 59) + ($customTemplate == null ? 43 : $customTemplate.hashCode());
|
Object $relationMap = getRelationMap();
|
int result2 = (result * 59) + ($relationMap == null ? 43 : $relationMap.hashCode());
|
Object $specialData = getSpecialData();
|
return (result2 * 59) + ($specialData == null ? 43 : $specialData.hashCode());
|
}
|
|
public String toString() {
|
return "CheckParamDTO(customTemplate=" + getCustomTemplate() + ", relationMap=" + getRelationMap() + ", specialData=" + getSpecialData() + ")";
|
}
|
|
public CustomTemplate getCustomTemplate() {
|
return this.customTemplate;
|
}
|
|
public Map<String, CustomTemplateFieldRelationDTO> getRelationMap() {
|
return this.relationMap;
|
}
|
|
public Map<String, String> getSpecialData() {
|
return this.specialData;
|
}
|
}
|