package com.qianwen.smartman.modules.mdc.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class ProParamSheetDTO implements Serializable {
|
private static final long serialVersionUID = 5849438396598711205L;
|
@ApiModelProperty("标题")
|
String title;
|
@ApiModelProperty("数据")
|
List<String> data;
|
|
public void setTitle(final String title) {
|
this.title = title;
|
}
|
|
public void setData(final List<String> data) {
|
this.data = data;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof ProParamSheetDTO) {
|
ProParamSheetDTO other = (ProParamSheetDTO) o;
|
if (other.canEqual(this)) {
|
Object this$title = getTitle();
|
Object other$title = other.getTitle();
|
if (this$title == null) {
|
if (other$title != null) {
|
return false;
|
}
|
} else if (!this$title.equals(other$title)) {
|
return false;
|
}
|
Object this$data = getData();
|
Object other$data = other.getData();
|
return this$data == null ? other$data == null : this$data.equals(other$data);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof ProParamSheetDTO;
|
}
|
|
public int hashCode() {
|
Object $title = getTitle();
|
int result = (1 * 59) + ($title == null ? 43 : $title.hashCode());
|
Object $data = getData();
|
return (result * 59) + ($data == null ? 43 : $data.hashCode());
|
}
|
|
public String toString() {
|
return "ProParamSheetDTO(title=" + getTitle() + ", data=" + getData() + ")";
|
}
|
|
public String getTitle() {
|
return this.title;
|
}
|
|
public List<String> getData() {
|
return this.data;
|
}
|
}
|