package com.qianwen.smartman.modules.mdc.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/ProParamSheetVO.class */
|
public class ProParamSheetVO implements Serializable {
|
private static final long serialVersionUID = 377459819369615190L;
|
@ApiModelProperty("表头")
|
List<String> head;
|
@ApiModelProperty("内容")
|
List<List<Object>> content;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/ProParamSheetVO$ProParamSheetVOBuilder.class */
|
public static class ProParamSheetVOBuilder {
|
private List<String> head;
|
private List<List<Object>> content;
|
|
ProParamSheetVOBuilder() {
|
}
|
|
public ProParamSheetVOBuilder head(final List<String> head) {
|
this.head = head;
|
return this;
|
}
|
|
public ProParamSheetVOBuilder content(final List<List<Object>> content) {
|
this.content = content;
|
return this;
|
}
|
|
public ProParamSheetVO build() {
|
return new ProParamSheetVO(this.head, this.content);
|
}
|
|
public String toString() {
|
return "ProParamSheetVO.ProParamSheetVOBuilder(head=" + this.head + ", content=" + this.content + ")";
|
}
|
}
|
|
public void setHead(final List<String> head) {
|
this.head = head;
|
}
|
|
public void setContent(final List<List<Object>> content) {
|
this.content = content;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof ProParamSheetVO) {
|
ProParamSheetVO other = (ProParamSheetVO) o;
|
if (other.canEqual(this)) {
|
Object this$head = getHead();
|
Object other$head = other.getHead();
|
if (this$head == null) {
|
if (other$head != null) {
|
return false;
|
}
|
} else if (!this$head.equals(other$head)) {
|
return false;
|
}
|
Object this$content = getContent();
|
Object other$content = other.getContent();
|
return this$content == null ? other$content == null : this$content.equals(other$content);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof ProParamSheetVO;
|
}
|
|
public int hashCode() {
|
Object $head = getHead();
|
int result = (1 * 59) + ($head == null ? 43 : $head.hashCode());
|
Object $content = getContent();
|
return (result * 59) + ($content == null ? 43 : $content.hashCode());
|
}
|
|
public String toString() {
|
return "ProParamSheetVO(head=" + getHead() + ", content=" + getContent() + ")";
|
}
|
|
public static ProParamSheetVOBuilder builder() {
|
return new ProParamSheetVOBuilder();
|
}
|
|
public ProParamSheetVO() {
|
}
|
|
public ProParamSheetVO(final List<String> head, final List<List<Object>> content) {
|
this.head = head;
|
this.content = content;
|
}
|
|
public List<String> getHead() {
|
return this.head;
|
}
|
|
public List<List<Object>> getContent() {
|
return this.content;
|
}
|
}
|