From f65443d8abeaedc9d102324565e8368e7c9d90c8 Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: Mon, 19 Jun 2023 14:41:54 +0800
Subject: [PATCH] commit
---
src/main/java/com/gk/firework/Domain/Vo/SelfCheckReportSearchVo.java | 159 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 159 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/gk/firework/Domain/Vo/SelfCheckReportSearchVo.java b/src/main/java/com/gk/firework/Domain/Vo/SelfCheckReportSearchVo.java
new file mode 100644
index 0000000..a758518
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/Vo/SelfCheckReportSearchVo.java
@@ -0,0 +1,159 @@
+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;
+ }
+}
--
Gitblit v1.9.2