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/StatusRecordWorkstationVO.class */
|
public class StatusRecordWorkstationVO implements Serializable {
|
private static final long serialVersionUID = 1;
|
@ApiModelProperty("日期")
|
private String date;
|
@ApiModelProperty("状态记录列表")
|
private List<StatusRecordVO> statusRecordList;
|
|
public StatusRecordWorkstationVO setDate(final String date) {
|
this.date = date;
|
return this;
|
}
|
|
public StatusRecordWorkstationVO setStatusRecordList(final List<StatusRecordVO> statusRecordList) {
|
this.statusRecordList = statusRecordList;
|
return this;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof StatusRecordWorkstationVO) {
|
StatusRecordWorkstationVO other = (StatusRecordWorkstationVO) o;
|
if (other.canEqual(this)) {
|
Object this$date = getDate();
|
Object other$date = other.getDate();
|
if (this$date == null) {
|
if (other$date != null) {
|
return false;
|
}
|
} else if (!this$date.equals(other$date)) {
|
return false;
|
}
|
Object this$statusRecordList = getStatusRecordList();
|
Object other$statusRecordList = other.getStatusRecordList();
|
return this$statusRecordList == null ? other$statusRecordList == null : this$statusRecordList.equals(other$statusRecordList);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof StatusRecordWorkstationVO;
|
}
|
|
public int hashCode() {
|
Object $date = getDate();
|
int result = (1 * 59) + ($date == null ? 43 : $date.hashCode());
|
Object $statusRecordList = getStatusRecordList();
|
return (result * 59) + ($statusRecordList == null ? 43 : $statusRecordList.hashCode());
|
}
|
|
public String toString() {
|
return "StatusRecordWorkstationVO(date=" + getDate() + ", statusRecordList=" + getStatusRecordList() + ")";
|
}
|
|
public String getDate() {
|
return this.date;
|
}
|
|
public List<StatusRecordVO> getStatusRecordList() {
|
return this.statusRecordList;
|
}
|
}
|