package com.qianwen.smartman.modules.coproduction.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.util.List;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/ExcelTemplateVO.class */
|
public class ExcelTemplateVO {
|
@ApiModelProperty("拓展字段")
|
private List<Long> relationIds;
|
|
public void setRelationIds(final List<Long> relationIds) {
|
this.relationIds = relationIds;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof ExcelTemplateVO) {
|
ExcelTemplateVO other = (ExcelTemplateVO) o;
|
if (other.canEqual(this)) {
|
Object this$relationIds = getRelationIds();
|
Object other$relationIds = other.getRelationIds();
|
return this$relationIds == null ? other$relationIds == null : this$relationIds.equals(other$relationIds);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof ExcelTemplateVO;
|
}
|
|
public int hashCode() {
|
Object $relationIds = getRelationIds();
|
int result = (1 * 59) + ($relationIds == null ? 43 : $relationIds.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "ExcelTemplateVO(relationIds=" + getRelationIds() + ")";
|
}
|
|
public List<Long> getRelationIds() {
|
return this.relationIds;
|
}
|
}
|