java110
2020-10-16 3d7a4912e2408f1dd06a82d99f255ae15650180b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.java110.report.dao.impl;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.core.base.dao.BaseServiceDao;
import com.java110.dto.report.ReportFeeDetailDto;
import com.java110.dto.report.ReportFeeDto;
import com.java110.report.dao.IReportFeeServiceDao;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
 
import java.util.List;
import java.util.Map;
 
/**
 * @ClassName ReportCommunityServiceDaoImpl
 * @Description TODO
 * @Author wuxw
 * @Date 2020/10/15 22:15
 * @Version 1.0
 * add by wuxw 2020/10/15
 **/
@Service("reportFeeServiceDaoImpl")
public class ReportFeeServiceDaoImpl extends BaseServiceDao implements IReportFeeServiceDao {
 
    private static Logger logger = LoggerFactory.getLogger(ReportFeeServiceDaoImpl.class);
 
    @Override
    public int getFeeCount(ReportFeeDto reportFeeDto) {
        logger.debug("查询费用月统计数据 入参 info : {}", JSONObject.toJSONString(reportFeeDto));
 
        List<Map> businessReportFeeMonthStatisticsInfos = sqlSessionTemplate.selectList("reportFeeServiceDaoImpl.getFeeCount", reportFeeDto);
        if (businessReportFeeMonthStatisticsInfos.size() < 1) {
            return 0;
        }
 
        return Integer.parseInt(businessReportFeeMonthStatisticsInfos.get(0).get("count").toString());
    }
 
    @Override
    public List<ReportFeeDto> getFees(ReportFeeDto reportFeeDto) {
        logger.debug("查询费用信息 入参 info : {}", JSONObject.toJSONString(reportFeeDto));
 
        List<ReportFeeDto> roomDtos = sqlSessionTemplate.selectList("reportFeeServiceDaoImpl.getFees", reportFeeDto);
 
        return roomDtos;
    }
 
    @Override
    public double getFeeReceivedAmount(ReportFeeDetailDto reportFeeDetailDto) {
        logger.debug("查询实收费用 入参 info : {}", JSONObject.toJSONString(reportFeeDetailDto));
 
        List<Map> businessReportFeeMonthStatisticsInfos = sqlSessionTemplate.selectList("reportFeeServiceDaoImpl.getFeeReceivedAmount", reportFeeDetailDto);
        if (businessReportFeeMonthStatisticsInfos.size() < 1) {
            return 0;
        }
 
        return Double.parseDouble(businessReportFeeMonthStatisticsInfos.get(0).get("receivedAmount").toString());
    }
}