package com.qianwen.smartman.modules.report.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
|
public class WorkstationAlarmByTimeSelectVO 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 Integer dateCycle;
|
@ApiModelProperty("报表分页数")
|
private Integer pageNo;
|
@ApiModelProperty("报表分页大小")
|
private Integer pageSize;
|
@ApiModelProperty("树选取工位id")
|
private List<String> 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 setDateCycle(final Integer dateCycle) {
|
this.dateCycle = dateCycle;
|
}
|
|
public void setPageNo(final Integer pageNo) {
|
this.pageNo = pageNo;
|
}
|
|
public void setPageSize(final Integer pageSize) {
|
this.pageSize = pageSize;
|
}
|
|
public void setWorkstationIds(final List<String> workstationIds) {
|
this.workstationIds = workstationIds;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof WorkstationAlarmByTimeSelectVO) {
|
WorkstationAlarmByTimeSelectVO other = (WorkstationAlarmByTimeSelectVO) o;
|
if (other.canEqual(this)) {
|
Object this$dateCycle = getDateCycle();
|
Object other$dateCycle = other.getDateCycle();
|
if (this$dateCycle == null) {
|
if (other$dateCycle != null) {
|
return false;
|
}
|
} else if (!this$dateCycle.equals(other$dateCycle)) {
|
return false;
|
}
|
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$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 WorkstationAlarmByTimeSelectVO;
|
}
|
|
public int hashCode() {
|
Object $dateCycle = getDateCycle();
|
int result = (1 * 59) + ($dateCycle == null ? 43 : $dateCycle.hashCode());
|
Object $pageNo = getPageNo();
|
int result2 = (result * 59) + ($pageNo == null ? 43 : $pageNo.hashCode());
|
Object $pageSize = getPageSize();
|
int result3 = (result2 * 59) + ($pageSize == null ? 43 : $pageSize.hashCode());
|
Object $showDate_begin = getShowDate_begin();
|
int result4 = (result3 * 59) + ($showDate_begin == null ? 43 : $showDate_begin.hashCode());
|
Object $showDate_end = getShowDate_end();
|
int result5 = (result4 * 59) + ($showDate_end == null ? 43 : $showDate_end.hashCode());
|
Object $workstationKeyword = getWorkstationKeyword();
|
int result6 = (result5 * 59) + ($workstationKeyword == null ? 43 : $workstationKeyword.hashCode());
|
Object $workstationIds = getWorkstationIds();
|
return (result6 * 59) + ($workstationIds == null ? 43 : $workstationIds.hashCode());
|
}
|
|
public String toString() {
|
return "WorkstationAlarmByTimeSelectVO(showDate_begin=" + getShowDate_begin() + ", showDate_end=" + getShowDate_end() + ", workstationKeyword=" + getWorkstationKeyword() + ", dateCycle=" + getDateCycle() + ", 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 Integer getDateCycle() {
|
return this.dateCycle;
|
}
|
|
public Integer getPageNo() {
|
return this.pageNo;
|
}
|
|
public Integer getPageSize() {
|
return this.pageSize;
|
}
|
|
public List<String> getWorkstationIds() {
|
return this.workstationIds;
|
}
|
}
|