wuxw
2022-05-10 b2b5bdf6f42597e582da96aa56707e1f68d3936e
service-report/src/main/java/com/java110/report/dao/impl/ReportFeeMonthStatisticsServiceDaoImpl.java
@@ -6,7 +6,7 @@
import com.java110.utils.constant.ResponseConstant;
import com.java110.utils.exception.DAOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.java110.core.log.LoggerFactory;
import org.springframework.stereotype.Service;
import java.util.List;
@@ -94,7 +94,16 @@
            return 0;
        }
        return Double.parseDouble(businessReportFeeMonthStatisticsInfos.get(0).get("count").toString());
        return Double.parseDouble(businessReportFeeMonthStatisticsInfos.get(0).get("total").toString());
    }
    @Override
    public List<Map> queryRoomAndParkingSpace(Map info) {
        logger.debug("查询费用月统计信息 入参 info : {}", info);
        List<Map> businessReportFeeMonthStatisticsInfos = sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryRoomAndParkingSpace", info);
        return businessReportFeeMonthStatisticsInfos;
    }
    /**