package com.gk.firework.Domain.Vo; import java.math.BigDecimal; import java.util.Date; public class SelfCheckReportSearchVo { //企业ID private Long eid; private String ename; //隐患等级 private Byte yhlevel; //隐患状态 private Byte status; //查询时间区间-起始 private Date startTime; //查询时间区间-结束 private Date endTime; /** 所属区域:省 province **/ private String province; /** 所属区域:市 city **/ private String city; /** 所属区域:区 district **/ private String district; /** 所属区域:街道 street **/ private String street; /** 所属区域:委员会 committee **/ private String committee; //页数 private Integer page; //页条目数量 private Integer pageSize; //总数量 private Long totalCount; public Long getEid() { return eid; } public void setEid(Long eid) { this.eid = eid; } public String getEname() { return ename; } public void setEname(String ename) { this.ename = ename; } public Byte getYhlevel() { return yhlevel; } public void setYhlevel(Byte yhlevel) { this.yhlevel = yhlevel; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Date getStartTime() { return startTime; } public void setStartTime(Date startTime) { this.startTime = startTime; } public Date getEndTime() { return endTime; } public void setEndTime(Date endTime) { this.endTime = endTime; } public String getProvince() { return province; } public void setProvince(String province) { this.province = province; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getDistrict() { return district; } public void setDistrict(String district) { this.district = district; } public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public String getCommittee() { return committee; } public void setCommittee(String committee) { this.committee = committee; } public Integer getPage() { return page; } public void setPage(Integer page) { this.page = page; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Long getTotalCount() { return totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } }