package com.qianwen.smartman.modules.cps.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/dto/MaintainItemExportDTO.class */
|
public class MaintainItemExportDTO implements Serializable {
|
@ApiModelProperty("关键词")
|
private String keyWord;
|
@ApiModelProperty("业务状态 1启用 0 停用")
|
private Integer status;
|
|
public MaintainItemExportDTO setKeyWord(final String keyWord) {
|
this.keyWord = keyWord;
|
return this;
|
}
|
|
public MaintainItemExportDTO setStatus(final Integer status) {
|
this.status = status;
|
return this;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof MaintainItemExportDTO) {
|
MaintainItemExportDTO other = (MaintainItemExportDTO) o;
|
if (other.canEqual(this)) {
|
Object this$status = getStatus();
|
Object other$status = other.getStatus();
|
if (this$status == null) {
|
if (other$status != null) {
|
return false;
|
}
|
} else if (!this$status.equals(other$status)) {
|
return false;
|
}
|
Object this$keyWord = getKeyWord();
|
Object other$keyWord = other.getKeyWord();
|
return this$keyWord == null ? other$keyWord == null : this$keyWord.equals(other$keyWord);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof MaintainItemExportDTO;
|
}
|
|
public int hashCode() {
|
Object $status = getStatus();
|
int result = (1 * 59) + ($status == null ? 43 : $status.hashCode());
|
Object $keyWord = getKeyWord();
|
return (result * 59) + ($keyWord == null ? 43 : $keyWord.hashCode());
|
}
|
|
public String toString() {
|
return "MaintainItemExportDTO(keyWord=" + getKeyWord() + ", status=" + getStatus() + ")";
|
}
|
|
public String getKeyWord() {
|
return this.keyWord;
|
}
|
|
public Integer getStatus() {
|
return this.status;
|
}
|
}
|