From be1b426b7d765a546f4a26b60e80aa49a57079b9 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期六, 13 一月 2024 16:25:11 +0800
Subject: [PATCH] 1、优化采购模块数量不能为小数点问题2、新增客服巡查巡楼记录功能模块3、新增页面导出功能4、优化记录查询条件新增时间段查询条件5、其他界面性调整

---
 java110-bean/src/main/java/com/java110/dto/purchase/AllocationStorehouseDto.java |   20 +++++++++++++++++++-
 1 files changed, 19 insertions(+), 1 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/purchase/AllocationStorehouseDto.java b/java110-bean/src/main/java/com/java110/dto/purchase/AllocationStorehouseDto.java
index f18ae46..07f42fa 100644
--- a/java110-bean/src/main/java/com/java110/dto/purchase/AllocationStorehouseDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/purchase/AllocationStorehouseDto.java
@@ -70,6 +70,9 @@
     private String timesId;
     private String communityId;
 
+    private String startTime;
+    private String endTime;
+
     private List<ResourceStoreTimesDto> times;
 
     public String getAsId() {
@@ -337,7 +340,6 @@
         this.rssId = rssId;
     }
 
-
     public String getApplyType() {
         return applyType;
     }
@@ -433,4 +435,20 @@
     public void setCommunityId(String communityId) {
         this.communityId = communityId;
     }
+
+    public String getStartTime() {
+        return startTime;
+    }
+
+    public void setStartTime(String startTime) {
+        this.startTime = startTime;
+    }
+
+    public String getEndTime() {
+        return endTime;
+    }
+
+    public void setEndTime(String endTime) {
+        this.endTime = endTime;
+    }
 }

--
Gitblit v1.8.0