|
@@ -3,6 +3,7 @@ package com.pj.project.tb_fee_statistics;
|
|
|
import java.util.List;
|
|
|
|
|
|
import com.pj.utils.so.SoMap;
|
|
|
+import org.aspectj.weaver.loadtime.Aj;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -89,6 +90,14 @@ public class TbFeeStatisticsController {
|
|
|
List<TbFeeStatistics> list = tbFeeStatisticsService.getYear(so.startPage());
|
|
|
return AjaxJson.getPageData(so.getDataCount(), list);
|
|
|
}
|
|
|
+
|
|
|
+ @RequestMapping("updateParkNum")
|
|
|
+ public AjaxJson updateParkNum(){
|
|
|
+ SoMap so = SoMap.getRequestSoMap();
|
|
|
+ String day = so.getString("day");
|
|
|
+ TbFeeStatistics feeStatistics = tbFeeStatisticsService.updateParkNum(day);
|
|
|
+ return AjaxJson.getSuccessData(feeStatistics);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|