package com.qianwen.smartman.modules.report.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.List; public class WorkstationAlarmByShiftSelectVO implements Serializable { private static final long serialVersionUID = 7581228615791208479L; @ApiModelProperty("开始时间") private String showDate_begin; @ApiModelProperty("结束时间") private String showDate_end; @ApiModelProperty(value = "工位编号/名称", dataType = "java.lang.String") private String workstationKeyword; @ApiModelProperty("选择班次 多选") private List shiftIndex; @ApiModelProperty("班次名称") private String shiftIndexName; @ApiModelProperty("报表分页数") private Integer pageNo = 1; @ApiModelProperty("报表分页大小") private Integer pageSize = 10; @ApiModelProperty("树选取工位id") private List workstationIds; public void setShowDate_begin(final String showDate_begin) { this.showDate_begin = showDate_begin; } public void setShowDate_end(final String showDate_end) { this.showDate_end = showDate_end; } public void setWorkstationKeyword(final String workstationKeyword) { this.workstationKeyword = workstationKeyword; } public void setShiftIndex(final List shiftIndex) { this.shiftIndex = shiftIndex; } public void setShiftIndexName(final String shiftIndexName) { this.shiftIndexName = shiftIndexName; } public void setPageNo(final Integer pageNo) { this.pageNo = pageNo; } public void setPageSize(final Integer pageSize) { this.pageSize = pageSize; } public void setWorkstationIds(final List workstationIds) { this.workstationIds = workstationIds; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof WorkstationAlarmByShiftSelectVO) { WorkstationAlarmByShiftSelectVO other = (WorkstationAlarmByShiftSelectVO) o; if (other.canEqual(this)) { Object this$pageNo = getPageNo(); Object other$pageNo = other.getPageNo(); if (this$pageNo == null) { if (other$pageNo != null) { return false; } } else if (!this$pageNo.equals(other$pageNo)) { return false; } Object this$pageSize = getPageSize(); Object other$pageSize = other.getPageSize(); if (this$pageSize == null) { if (other$pageSize != null) { return false; } } else if (!this$pageSize.equals(other$pageSize)) { return false; } Object this$showDate_begin = getShowDate_begin(); Object other$showDate_begin = other.getShowDate_begin(); if (this$showDate_begin == null) { if (other$showDate_begin != null) { return false; } } else if (!this$showDate_begin.equals(other$showDate_begin)) { return false; } Object this$showDate_end = getShowDate_end(); Object other$showDate_end = other.getShowDate_end(); if (this$showDate_end == null) { if (other$showDate_end != null) { return false; } } else if (!this$showDate_end.equals(other$showDate_end)) { return false; } Object this$workstationKeyword = getWorkstationKeyword(); Object other$workstationKeyword = other.getWorkstationKeyword(); if (this$workstationKeyword == null) { if (other$workstationKeyword != null) { return false; } } else if (!this$workstationKeyword.equals(other$workstationKeyword)) { return false; } Object this$shiftIndex = getShiftIndex(); Object other$shiftIndex = other.getShiftIndex(); if (this$shiftIndex == null) { if (other$shiftIndex != null) { return false; } } else if (!this$shiftIndex.equals(other$shiftIndex)) { return false; } Object this$shiftIndexName = getShiftIndexName(); Object other$shiftIndexName = other.getShiftIndexName(); if (this$shiftIndexName == null) { if (other$shiftIndexName != null) { return false; } } else if (!this$shiftIndexName.equals(other$shiftIndexName)) { return false; } Object this$workstationIds = getWorkstationIds(); Object other$workstationIds = other.getWorkstationIds(); return this$workstationIds == null ? other$workstationIds == null : this$workstationIds.equals(other$workstationIds); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof WorkstationAlarmByShiftSelectVO; } public int hashCode() { Object $pageNo = getPageNo(); int result = (1 * 59) + ($pageNo == null ? 43 : $pageNo.hashCode()); Object $pageSize = getPageSize(); int result2 = (result * 59) + ($pageSize == null ? 43 : $pageSize.hashCode()); Object $showDate_begin = getShowDate_begin(); int result3 = (result2 * 59) + ($showDate_begin == null ? 43 : $showDate_begin.hashCode()); Object $showDate_end = getShowDate_end(); int result4 = (result3 * 59) + ($showDate_end == null ? 43 : $showDate_end.hashCode()); Object $workstationKeyword = getWorkstationKeyword(); int result5 = (result4 * 59) + ($workstationKeyword == null ? 43 : $workstationKeyword.hashCode()); Object $shiftIndex = getShiftIndex(); int result6 = (result5 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode()); Object $shiftIndexName = getShiftIndexName(); int result7 = (result6 * 59) + ($shiftIndexName == null ? 43 : $shiftIndexName.hashCode()); Object $workstationIds = getWorkstationIds(); return (result7 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode()); } public String toString() { return "WorkstationAlarmByShiftSelectVO(showDate_begin=" + getShowDate_begin() + ", showDate_end=" + getShowDate_end() + ", workstationKeyword=" + getWorkstationKeyword() + ", shiftIndex=" + getShiftIndex() + ", shiftIndexName=" + getShiftIndexName() + ", pageNo=" + getPageNo() + ", pageSize=" + getPageSize() + ", workstationIds=" + getWorkstationIds() + ")"; } public String getShowDate_begin() { return this.showDate_begin; } public String getShowDate_end() { return this.showDate_end; } public String getWorkstationKeyword() { return this.workstationKeyword; } public List getShiftIndex() { return this.shiftIndex; } public String getShiftIndexName() { return this.shiftIndexName; } public Integer getPageNo() { return this.pageNo; } public Integer getPageSize() { return this.pageSize; } public List getWorkstationIds() { return this.workstationIds; } }