package com.qianwen.smartman.modules.mdc.dto;
|
|
import java.util.List;
|
import com.qianwen.smartman.modules.mdc.vo.StatusRecordVO;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/GroupFeedbackCacheDTO.class */
|
public class GroupFeedbackCacheDTO {
|
private List<StatusRecordVO> recordList;
|
private int statusNum = 0;
|
private int cancelNum = 0;
|
|
public void setRecordList(final List<StatusRecordVO> recordList) {
|
this.recordList = recordList;
|
}
|
|
public void setStatusNum(final int statusNum) {
|
this.statusNum = statusNum;
|
}
|
|
public void setCancelNum(final int cancelNum) {
|
this.cancelNum = cancelNum;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof GroupFeedbackCacheDTO) {
|
GroupFeedbackCacheDTO other = (GroupFeedbackCacheDTO) o;
|
if (other.canEqual(this) && getStatusNum() == other.getStatusNum() && getCancelNum() == other.getCancelNum()) {
|
Object this$recordList = getRecordList();
|
Object other$recordList = other.getRecordList();
|
return this$recordList == null ? other$recordList == null : this$recordList.equals(other$recordList);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof GroupFeedbackCacheDTO;
|
}
|
|
public int hashCode() {
|
int result = (1 * 59) + getStatusNum();
|
int result2 = (result * 59) + getCancelNum();
|
Object $recordList = getRecordList();
|
return (result2 * 59) + ($recordList == null ? 43 : $recordList.hashCode());
|
}
|
|
public String toString() {
|
return "GroupFeedbackCacheDTO(recordList=" + getRecordList() + ", statusNum=" + getStatusNum() + ", cancelNum=" + getCancelNum() + ")";
|
}
|
|
public List<StatusRecordVO> getRecordList() {
|
return this.recordList;
|
}
|
|
public int getStatusNum() {
|
return this.statusNum;
|
}
|
|
public int getCancelNum() {
|
return this.cancelNum;
|
}
|
}
|