|
|
@ -20,16 +20,15 @@ package com.epmet.service.stats.user.impl; |
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
|
import com.epmet.commons.tools.constant.FieldConstant; |
|
|
|
import com.epmet.commons.tools.page.PageData; |
|
|
|
import com.epmet.commons.tools.utils.ConvertUtils; |
|
|
|
import com.epmet.commons.tools.constant.FieldConstant; |
|
|
|
import com.epmet.dao.stats.user.FactRegUserGridMonthlyDao; |
|
|
|
import com.epmet.dto.extract.result.GridUserCountResultDTO; |
|
|
|
import com.epmet.dto.stats.user.FactRegUserGridMonthlyDTO; |
|
|
|
import com.epmet.entity.stats.user.FactRegUserGridMonthlyEntity; |
|
|
|
import com.epmet.service.stats.user.FactRegUserGridMonthlyService; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
@ -112,6 +111,20 @@ public class FactRegUserGridMonthlyServiceImpl extends BaseServiceImpl<FactRegUs |
|
|
|
return baseDao.selectGridUserCount(customerId, monthId); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 网格相关-党建能力:网格群众用户数、网格党员用户数 |
|
|
|
* 从fact_reg_user_grid_daily这个表 sum增量,为了与运营端数据导出一致 |
|
|
|
* |
|
|
|
* @param customerId |
|
|
|
* @param monthId |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public List<GridUserCountResultDTO> selectGridUserCountFromDaily(String customerId, String monthId) { |
|
|
|
return baseDao.selectGridUserCountFromDaily(customerId, monthId); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
public List<FactRegUserGridMonthlyDTO> getGridUserCountByCustomer(String customerId, String monthId) { |
|
|
|
return baseDao.selectGridUserCountByCustomer(customerId, monthId); |
|
|
|