From d1f26741bddf6f512d62c0100d42c52be8d37e76 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期六, 06 二月 2021 15:35:40 +0800
Subject: [PATCH] 工具类优化

---
 fanli/src/main/java/com/yeshi/fanli/controller/admin/CountChartsAdminController.java |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/controller/admin/CountChartsAdminController.java b/fanli/src/main/java/com/yeshi/fanli/controller/admin/CountChartsAdminController.java
index 6af82744..ffc0fb3 100644
--- a/fanli/src/main/java/com/yeshi/fanli/controller/admin/CountChartsAdminController.java
+++ b/fanli/src/main/java/com/yeshi/fanli/controller/admin/CountChartsAdminController.java
@@ -9,6 +9,7 @@
 
 import javax.annotation.Resource;
 
+import com.yeshi.fanli.entity.accept.AdminAcceptData;
 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.yeshi.utils.JsonUtil;
@@ -24,9 +25,9 @@
 import com.yeshi.fanli.service.inter.count.DailyCountMomentsService;
 import com.yeshi.fanli.service.inter.count.DailyCountOrderService;
 import com.yeshi.fanli.service.inter.count.DailyCountUserService;
-import com.yeshi.fanli.util.MoneyBigDecimalUtil;
+import org.yeshi.utils.MoneyBigDecimalUtil;
 import com.yeshi.fanli.util.StringUtil;
-import com.yeshi.fanli.util.TimeUtil;
+import org.yeshi.utils.TimeUtil;
 
 import net.sf.json.JSONArray;
 import net.sf.json.JSONObject;
@@ -61,8 +62,8 @@
 	 * @param out
 	 */
 	@RequestMapping(value = "getOrderCharts")
-	public void getOrderCharts(String callback, Integer dateType, String year, String startTime, String endTime, 
-			String typeArray, String channelArray, PrintWriter out) {
+	public void getOrderCharts(AdminAcceptData acceptData, String callback, Integer dateType, String year, String startTime, String endTime,
+							   String typeArray, String channelArray, PrintWriter out) {
 		try {
 			// 鏁版嵁楠岃瘉澶勭悊
 			verifyQueryData(callback, dateType, year, startTime, endTime, out);
@@ -195,7 +196,7 @@
 	 * @param out
 	 */
 	@RequestMapping(value = "getUserCharts")
-	public void getUserCharts(String callback, Integer dateType, String year, String startTime, String endTime, 
+	public void getUserCharts(AdminAcceptData acceptData,String callback, Integer dateType, String year, String startTime, String endTime,
 			String typeArray, String channelArray, PrintWriter out) {
 		try {
 			// 鏁版嵁楠岃瘉澶勭悊
@@ -321,11 +322,10 @@
 	 * @param year
 	 * @param startTime
 	 * @param endTime
-	 * @param type 鏌ヨ绫诲瀷
 	 * @param out
 	 */
 	@RequestMapping(value = "getCouponCharts")
-	public void getCouponCharts(String callback, Integer dateType, String year, String startTime, String endTime, 
+	public void getCouponCharts(AdminAcceptData acceptData,String callback, Integer dateType, String year, String startTime, String endTime,
 			String typeArray, PrintWriter out) {
 		try {
 			// 鏁版嵁楠岃瘉澶勭悊
@@ -405,7 +405,7 @@
 	
 	
 	@RequestMapping(value = "getMomentsCharts")
-	public void getMomentsCharts(String callback, Integer dateType, String year, String startTime, String endTime, 
+	public void getMomentsCharts(AdminAcceptData acceptData,String callback, Integer dateType, String year, String startTime, String endTime,
 			String typeArray, PrintWriter out) {
 		try {
 			// 鏁版嵁楠岃瘉澶勭悊

--
Gitblit v1.8.0