From b173d31976fc4731b7c247d4038de92134eba317 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 29 六月 2023 11:42:17 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
service-report/src/main/java/com/java110/report/smo/impl/ReportFeeStatisticsInnerServiceSMOImpl.java | 214 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 214 insertions(+), 0 deletions(-)
diff --git a/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeStatisticsInnerServiceSMOImpl.java b/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeStatisticsInnerServiceSMOImpl.java
index f4dfea7..722570e 100644
--- a/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeStatisticsInnerServiceSMOImpl.java
+++ b/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeStatisticsInnerServiceSMOImpl.java
@@ -2,6 +2,7 @@
import com.java110.core.base.smo.BaseServiceSMO;
+import com.java110.dto.PageDto;
import com.java110.dto.report.QueryStatisticsDto;
import com.java110.intf.report.IReportFeeStatisticsInnerServiceSMO;
import com.java110.report.dao.IReportFeeStatisticsServiceDao;
@@ -10,6 +11,7 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
+import java.util.List;
import java.util.Map;
/**
@@ -45,6 +47,24 @@
}
@Override
+ public double getOweFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getOweFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ /**
+ * 鏌ヨ褰撴湀搴旀敹
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double getCurReceivableFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getCurReceivableFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
public double getHisReceivedFee(@RequestBody QueryStatisticsDto queryFeeStatisticsDto) {
double info = reportFeeStatisticsServiceDaoImpl.getHisReceivedFee(BeanConvertUtil.beanCovertMap(queryFeeStatisticsDto));
return info;
@@ -64,6 +84,7 @@
/**
* 鏌ヨ娆犺垂鎴锋暟
+ *
* @param queryStatisticsDto
* @return
*/
@@ -72,4 +93,197 @@
int info = reportFeeStatisticsServiceDaoImpl.getOweRoomCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
return info;
}
+
+ /**
+ * 鏌ヨ鏀惰垂鎴垮眿鏁�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public long getFeeRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ int info = reportFeeStatisticsServiceDaoImpl.getFeeRoomCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ /**
+ * 妤兼爧鏀惰垂鐜囦俊鎭粺璁�
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public List<Map> getFloorFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+
+ List<Map> info = reportFeeStatisticsServiceDaoImpl.getFloorFeeSummary(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ /**
+ * 璐圭敤椤规敹璐圭巼淇℃伅缁熻
+ *
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public List<Map> getConfigFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+
+ List<Map> info = reportFeeStatisticsServiceDaoImpl.getConfigFeeSummary(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public int getObjFeeSummaryCount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ int info = reportFeeStatisticsServiceDaoImpl.getObjFeeSummaryCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public List<Map> getObjFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ //鏍¢獙鏄惁浼犱簡 鍒嗛〉淇℃伅
+
+ int page = queryStatisticsDto.getPage();
+
+ if (page != PageDto.DEFAULT_PAGE) {
+ queryStatisticsDto.setPage((page - 1) * queryStatisticsDto.getRow());
+ }
+
+ List<Map> info = reportFeeStatisticsServiceDaoImpl.getObjFeeSummary(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public List<Map> getOwnerFeeSummary(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ int page = queryStatisticsDto.getPage();
+
+ if (page != PageDto.DEFAULT_PAGE) {
+ queryStatisticsDto.setPage((page - 1) * queryStatisticsDto.getRow());
+ }
+
+ List<Map> info = reportFeeStatisticsServiceDaoImpl.getOwnerFeeSummary(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double getDiscountFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getDiscountFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double getLateFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getLateFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double getPrestoreAccount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getPrestoreAccount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double getWithholdAccount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getWithholdAccount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ /**
+ * 涓存椂杞︽敹鍏�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double getTempCarFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getTempCarFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ /**
+ * 鏌ヨ閫�娆炬娂閲�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public double geRefundDeposit(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.geRefundDeposit(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double geRefundOrderCount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.geRefundOrderCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double geRefundFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.geRefundFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double getChargeFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getChargeFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public List<Map> getReceivedFeeByFloor(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ List<Map> infos = reportFeeStatisticsServiceDaoImpl.getReceivedFeeByFloor(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return infos;
+ }
+
+ /**
+ * 鎸夋敹娆炬柟寮忕粺璁℃敹鍏�
+ * @param queryStatisticsDto
+ * @return
+ */
+ @Override
+ public List<Map> getReceivedFeeByPrimeRate(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ List<Map> infos = reportFeeStatisticsServiceDaoImpl.getReceivedFeeByPrimeRate(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return infos;
+ }
+
+ @Override
+ public List<Map> getOweFeeByFloor(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ List<Map> infos = reportFeeStatisticsServiceDaoImpl.getOweFeeByFloor(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return infos;
+ }
+
+ @Override
+ public List<Map> getObjOweFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ List<Map> infos = reportFeeStatisticsServiceDaoImpl.getObjOweFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return infos;
+ }
+
+ @Override
+ public long getReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ long info = reportFeeStatisticsServiceDaoImpl.getReceivedRoomCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double getReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getReceivedRoomAmount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public long getHisOweReceivedRoomCount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ long info = reportFeeStatisticsServiceDaoImpl.getHisOweReceivedRoomCount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public double getHisOweReceivedRoomAmount(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ double info = reportFeeStatisticsServiceDaoImpl.getHisOweReceivedRoomAmount(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return info;
+ }
+
+ @Override
+ public List<Map> getObjReceivedFee(@RequestBody QueryStatisticsDto queryStatisticsDto) {
+ List<Map> infos = reportFeeStatisticsServiceDaoImpl.getObjReceivedFee(BeanConvertUtil.beanCovertMap(queryStatisticsDto));
+ return infos;
+ }
}
--
Gitblit v1.8.0