From b87cfce785e4c177ce9956a19e94e2f49dd9c995 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 16 五月 2023 00:53:16 +0800
Subject: [PATCH] 优化定时任务手工测试
---
java110-bean/src/main/java/com/java110/dto/report/QueryStatisticsDto.java | 54 +++++++++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 49 insertions(+), 5 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/report/QueryStatisticsDto.java b/java110-bean/src/main/java/com/java110/dto/report/QueryStatisticsDto.java
index e6b448c..83a9eec 100644
--- a/java110-bean/src/main/java/com/java110/dto/report/QueryStatisticsDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/report/QueryStatisticsDto.java
@@ -5,7 +5,18 @@
public class QueryStatisticsDto implements Serializable {
private String communityId;
- private String queryDate;
+ private String startDate;
+
+ /**
+ * 鏌ヨ鍘嗗彶娆犺垂
+ */
+ private String endDate;
+
+ private String floorId;
+
+ private String configId;
+
+ private String objName;
public String getCommunityId() {
@@ -16,11 +27,44 @@
this.communityId = communityId;
}
- public String getQueryDate() {
- return queryDate;
+
+ public String getStartDate() {
+ return startDate;
}
- public void setQueryDate(String queryDate) {
- this.queryDate = queryDate;
+ public void setStartDate(String startDate) {
+ this.startDate = startDate;
+ }
+
+ public String getEndDate() {
+ return endDate;
+ }
+
+ public void setEndDate(String endDate) {
+ this.endDate = endDate;
+ }
+
+ public String getFloorId() {
+ return floorId;
+ }
+
+ public void setFloorId(String floorId) {
+ this.floorId = floorId;
+ }
+
+ public String getConfigId() {
+ return configId;
+ }
+
+ public void setConfigId(String configId) {
+ this.configId = configId;
+ }
+
+ public String getObjName() {
+ return objName;
+ }
+
+ public void setObjName(String objName) {
+ this.objName = objName;
}
}
--
Gitblit v1.8.0