|
|
|
@ -1,6 +1,8 @@ |
|
|
|
package com.epmet.service.indexcal.impl; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
|
import com.epmet.commons.tools.constant.StrConstant; |
|
|
|
import com.epmet.constant.IndexCalConstant; |
|
|
|
import com.epmet.dao.indexcoll.FactIndexGovrnAblityGridMonthlyDao; |
|
|
|
import com.epmet.dao.indexcoll.FactIndexPartyAblityGridMonthlyDao; |
|
|
|
import com.epmet.dao.indexcoll.FactIndexServiceAblityGridMonthlyDao; |
|
|
|
@ -12,15 +14,21 @@ import com.epmet.dto.indexcal.PageQueryGridFormDTO; |
|
|
|
import com.epmet.entity.screen.IndexGroupDetailEntity; |
|
|
|
import com.epmet.eum.IndexCodeEnum; |
|
|
|
import com.epmet.service.indexcal.GridCorreLationService; |
|
|
|
import com.epmet.service.indexcal.IndexCodeFieldReService; |
|
|
|
import com.epmet.service.screen.IndexGroupDetailService; |
|
|
|
import com.epmet.support.normalizing.*; |
|
|
|
import com.epmet.support.normalizing.batch.*; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.apache.logging.log4j.LogManager; |
|
|
|
import org.apache.logging.log4j.Logger; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.util.CollectionUtils; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.util.*; |
|
|
|
import java.util.function.Function; |
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
/** |
|
|
|
* 网格相关service |
|
|
|
@ -41,6 +49,8 @@ public class GridCorreLationServiceImpl implements GridCorreLationService { |
|
|
|
private ScreenCustomerGridDao screenCustomerGridDao; |
|
|
|
@Autowired |
|
|
|
private IndexGroupDetailService indexGroupDetailService; |
|
|
|
@Autowired |
|
|
|
private IndexCodeFieldReService indexCodeFieldReService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @param formDTO |
|
|
|
@ -55,86 +65,242 @@ public class GridCorreLationServiceImpl implements GridCorreLationService { |
|
|
|
List<IndexGroupDetailEntity> dangJianNengLiList = indexGroupDetailService.getDetailListByParentCode(formDTO.getCustomerId(), |
|
|
|
IndexCodeEnum.WANG_GE_XIANG_GUAN.getCode(), |
|
|
|
IndexCodeEnum.DANG_JIAN_NENG_LI.getCode()); |
|
|
|
if(!CollectionUtils.isEmpty(dangJianNengLiList)){ |
|
|
|
if (!CollectionUtils.isEmpty(dangJianNengLiList)) { |
|
|
|
//1、计算网格相关-党建能力
|
|
|
|
calculateGridCorreLationDangJian(formDTO,dangJianNengLiList); |
|
|
|
calculateGridCorreLationDangJian(formDTO, dangJianNengLiList); |
|
|
|
} |
|
|
|
List<IndexGroupDetailEntity> zhiLiNengLiList = indexGroupDetailService.getDetailListByParentCode(formDTO.getCustomerId(), |
|
|
|
/* List<IndexGroupDetailEntity> zhiLiNengLiList = indexGroupDetailService.getDetailListByParentCode(formDTO.getCustomerId(), |
|
|
|
IndexCodeEnum.WANG_GE_XIANG_GUAN.getCode(), |
|
|
|
IndexCodeEnum.ZHI_LI_NENG_LI.getCode()); |
|
|
|
if(!CollectionUtils.isEmpty(zhiLiNengLiList)){ |
|
|
|
if (!CollectionUtils.isEmpty(zhiLiNengLiList)) { |
|
|
|
//2、计算网格相关-治理能力
|
|
|
|
calculateGridCorreLationZhiLi(formDTO,zhiLiNengLiList); |
|
|
|
calculateGridCorreLationZhiLi(formDTO, zhiLiNengLiList); |
|
|
|
} |
|
|
|
List<IndexGroupDetailEntity> fuWuNengLiList = indexGroupDetailService.getDetailListByParentCode(formDTO.getCustomerId(), |
|
|
|
IndexCodeEnum.WANG_GE_XIANG_GUAN.getCode(), |
|
|
|
IndexCodeEnum.FU_WU_NENG_LI.getCode()); |
|
|
|
if(!CollectionUtils.isEmpty(fuWuNengLiList)){ |
|
|
|
if (!CollectionUtils.isEmpty(fuWuNengLiList)) { |
|
|
|
//3、计算网格相关-服务能力
|
|
|
|
calculateGridCorreLationFuWu(formDTO,fuWuNengLiList); |
|
|
|
calculateGridCorreLationFuWu(formDTO, fuWuNengLiList); |
|
|
|
} |
|
|
|
//计算网格相关总分
|
|
|
|
List<IndexGroupDetailEntity> wgxgList = indexGroupDetailService.getDetailListByParentCode(formDTO.getCustomerId(), |
|
|
|
IndexCodeEnum.WANG_GE_XIANG_GUAN.getCode()); |
|
|
|
if(!CollectionUtils.isEmpty(wgxgList)){ |
|
|
|
calculateGridCorreLationTotal(formDTO,wgxgList); |
|
|
|
} |
|
|
|
if (!CollectionUtils.isEmpty(wgxgList)) { |
|
|
|
calculateGridCorreLationTotal(formDTO, wgxgList); |
|
|
|
}*/ |
|
|
|
resultFlag = true; |
|
|
|
return resultFlag; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return void |
|
|
|
* @param formDTO |
|
|
|
* @param indexList |
|
|
|
* @return void |
|
|
|
* @author yinzuomei |
|
|
|
* @description 计算网格相关-党建能力 |
|
|
|
* @Date 2020/8/26 16:47 |
|
|
|
**/ |
|
|
|
private void calculateGridCorreLationDangJian(CalculateCommonFormDTO formDTO,List<IndexGroupDetailEntity> indexList){ |
|
|
|
//分页查询网格列表
|
|
|
|
//查询五级指标
|
|
|
|
private void calculateGridCorreLationDangJian(CalculateCommonFormDTO formDTO, List<IndexGroupDetailEntity> indexList) { |
|
|
|
//查询总记录数
|
|
|
|
int total = factIndexPartyAblityGridMonthlyDao.selectCount(formDTO); |
|
|
|
if (NumConstant.ZERO == total) { |
|
|
|
logger.info(String.format("customerId:%s,monthId:%s,没有上传网格相关-党建能力-五级指标数据"), formDTO.getCustomerId(), formDTO.getMonthId()); |
|
|
|
return; |
|
|
|
} |
|
|
|
//总页数,进行批量查询,批量计算
|
|
|
|
int totalPage = (int) Math.ceil((double) total / IndexCalConstant.PAGE_SIZE); |
|
|
|
logger.info(String.format("共%s条数据,分%s次计算", total, totalPage)); |
|
|
|
//每一组指标的最大值,key:code_MIN/MAX
|
|
|
|
Map<String, Object> minAndMaxMap = queryPartyAblityGridMinAndMax(formDTO.getCustomerId(), formDTO.getMonthId()); |
|
|
|
//指标集合
|
|
|
|
Map<String, IndexInputVO<BigDecimal>> indexMap = getIndexInputVO(formDTO, indexList, minAndMaxMap); |
|
|
|
//分页查询采集记录
|
|
|
|
for (int pageNo = 1; pageNo <= totalPage; pageNo++) { |
|
|
|
int pageIndex = (pageNo - NumConstant.ONE) * IndexCalConstant.PAGE_SIZE; |
|
|
|
//前10条
|
|
|
|
List<Map<String, Object>> recordList = queryListPartyAblityGrid(new PageQueryGridFormDTO(formDTO.getCustomerId(), |
|
|
|
formDTO.getMonthId(), |
|
|
|
pageIndex, |
|
|
|
pageNo, |
|
|
|
IndexCalConstant.PAGE_SIZE)); |
|
|
|
//遍历每一个网格的记录
|
|
|
|
recordList.forEach(recordMap -> { |
|
|
|
//遍历所有的指标
|
|
|
|
indexMap.forEach((key, value) -> { |
|
|
|
//列名不为空
|
|
|
|
if (StringUtils.isNotBlank(indexCodeFieldReService.getFieldNameByIndexCode(key))) { |
|
|
|
//对应的数值
|
|
|
|
String sampleValueStr = String.valueOf(recordMap.get(indexCodeFieldReService.getFieldNameByIndexCode(key))); |
|
|
|
//构造样本值对象
|
|
|
|
SampleValue<BigDecimal> currentGridIndexValue = new SampleValue((String) recordMap.get(IndexCalConstant.GRID_ID), new BigDecimal(sampleValueStr)); |
|
|
|
value.getIndexValueVOs().add(currentGridIndexValue); |
|
|
|
} else if (IndexCodeEnum.ZUZHINEIDANGYDLXQZNLKPFPJZ.getCode().equals(key)) { |
|
|
|
//组织内党员的联系群众能力考评分(平均值) TODO
|
|
|
|
logger.info("组织内党员的联系群众能力考评分(平均值) TODO"); |
|
|
|
//网格内党员的联系群众能力考评分(平均值)
|
|
|
|
/* BigDecimal contactResiAblity = null; |
|
|
|
SampleValue<BigDecimal> contactResiAblityValue = new SampleValue((String) recordMap.get(IndexCalConstant.GRID_ID), contactResiAblity); |
|
|
|
value.getIndexValueVOs().add(contactResiAblityValue);*/ |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
List<IndexOutputVO> result = calculate(indexMap); |
|
|
|
// TODO 处理结果
|
|
|
|
saveGridCorreLationDangJian(formDTO, indexList, result); |
|
|
|
|
|
|
|
try { |
|
|
|
for (IndexOutputVO m : result) { |
|
|
|
logger.info("indexId=" + m.getIndexId()); |
|
|
|
for (SampleScore sampleScore : m.getIndexScoreVOs()) { |
|
|
|
logger.info(String.format("网格id:%s,得分:%s", sampleScore.getSampleId(), sampleScore.getSampleScore())); |
|
|
|
} |
|
|
|
} |
|
|
|
} catch (Exception e) { |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param formDTO 客户id 月份id: yyyyMM |
|
|
|
* @param indexList 指标集合 |
|
|
|
* @param indexOutputVOList |
|
|
|
* @return void |
|
|
|
* @author yinzuomei |
|
|
|
* @description 保存网格相关五级指标分值 |
|
|
|
* @Date 2020/8/30 22:50 |
|
|
|
**/ |
|
|
|
private void saveGridCorreLationDangJian(CalculateCommonFormDTO formDTO, |
|
|
|
List<IndexGroupDetailEntity> indexList, |
|
|
|
List<IndexOutputVO> indexOutputVOList) { |
|
|
|
Map<String, IndexGroupDetailEntity> indexMap = indexList.stream().collect(Collectors.toMap(IndexGroupDetailEntity::getIndexCode, Function.identity())); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param indexMap |
|
|
|
* @return java.util.List<com.epmet.support.normalizing.batch.IndexOutputVO> |
|
|
|
* @author yinzuomei |
|
|
|
* @description |
|
|
|
* @Date 2020/8/30 21:40 |
|
|
|
**/ |
|
|
|
private List<IndexOutputVO> calculate(Map<String, IndexInputVO<BigDecimal>> indexMap) { |
|
|
|
//构造入参
|
|
|
|
List<IndexInputVO> indexInputVOS = this.getIndexInputVOList(indexMap); |
|
|
|
BatchScoreCalculator batchScoreCalculator = new BatchScoreCalculator(); |
|
|
|
return batchScoreCalculator.exec(indexInputVOS); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param indexMap |
|
|
|
* @return java.util.List<com.epmet.support.normalizing.batch.IndexInputVO> |
|
|
|
* @author yinzuomei |
|
|
|
* @description |
|
|
|
* @Date 2020/8/30 18:34 |
|
|
|
**/ |
|
|
|
private List<IndexInputVO> getIndexInputVOList(Map<String, IndexInputVO<BigDecimal>> indexMap) { |
|
|
|
List<IndexInputVO> list = new ArrayList<>(); |
|
|
|
//遍历所有的指标
|
|
|
|
indexMap.forEach((key, indexInputVO) -> { |
|
|
|
list.add(indexInputVO); |
|
|
|
}); |
|
|
|
return list; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @param indexList 指标集合 |
|
|
|
* @param minAndMaxMap 最大值最小值集合 |
|
|
|
* @return java.util.Map<java.lang.String, com.epmet.support.normalizing.batch.IndexInputVO> |
|
|
|
* @author yinzuomei |
|
|
|
* @description |
|
|
|
* @Date 2020/8/30 15:56 |
|
|
|
**/ |
|
|
|
private Map<String, IndexInputVO<BigDecimal>> getIndexInputVO(CalculateCommonFormDTO formDTO, List<IndexGroupDetailEntity> indexList, Map<String, Object> minAndMaxMap) { |
|
|
|
Map<String, IndexInputVO<BigDecimal>> map = new HashMap<>(); |
|
|
|
for (int indexNum = 0; indexNum < indexList.size(); indexNum++) { |
|
|
|
IndexGroupDetailEntity index = indexList.get(indexNum); |
|
|
|
IndexInputVO indexInputVO = new IndexInputVO(); |
|
|
|
// 指标code
|
|
|
|
indexInputVO.setIndexId(index.getIndexCode()); |
|
|
|
//权重
|
|
|
|
indexInputVO.setWeight(index.getWeight()); |
|
|
|
BigDecimal minValue = null; |
|
|
|
BigDecimal maxValue = null; |
|
|
|
if (IndexCodeEnum.ZUZHINEIDANGYDLXQZNLKPFPJZ.getCode().equals(index.getIndexCode())) { |
|
|
|
//组织内党员的联系群众能力考评分(平均值) TODO 获取最大值,最小值
|
|
|
|
logger.info("组织内党员的联系群众能力考评分(平均值) TODO"); |
|
|
|
/*Map<String,BigDecimal> contactResiAblityMap=; |
|
|
|
minValue=contactResiAblityMap.get(StrConstant.MIN); |
|
|
|
maxValue=contactResiAblityMap.get(StrConstant.MAX);*/ |
|
|
|
continue; |
|
|
|
} else { |
|
|
|
//获取指标对应的列名
|
|
|
|
String fieldName = indexCodeFieldReService.getFieldNameByIndexCode(index.getIndexCode()); |
|
|
|
// logger.info("fieldName=" + fieldName + ";index.getIndexCode()=" + index.getIndexCode());
|
|
|
|
//最小值key
|
|
|
|
String minValueKey = fieldName.concat(StrConstant.UNDER_LINE).concat(StrConstant.MIN); |
|
|
|
//最大值key
|
|
|
|
String maxValueKey = fieldName.concat(StrConstant.UNDER_LINE).concat(StrConstant.MAX); |
|
|
|
minValue = new BigDecimal(String.valueOf(minAndMaxMap.get(minValueKey))); |
|
|
|
maxValue = new BigDecimal(String.valueOf(minAndMaxMap.get(maxValueKey))); |
|
|
|
} |
|
|
|
// logger.info("minValue="+minValue+";maxValue="+maxValue);
|
|
|
|
//分值计算器
|
|
|
|
ScoreCalculator<Integer> scoreCalculator = new BigDecimalScoreCalculator(minValue, |
|
|
|
maxValue, |
|
|
|
ScoreConstants.MIN_SCORE, |
|
|
|
ScoreConstants.MAX_SCORE, |
|
|
|
Correlation.getCorrelation(index.getCorrelation()) |
|
|
|
); |
|
|
|
indexInputVO.setScoreCalculator(scoreCalculator); |
|
|
|
List<SampleValue<BigDecimal>> sampleValueList = new ArrayList<>(); |
|
|
|
indexInputVO.setIndexValueVOs(sampleValueList); |
|
|
|
|
|
|
|
map.put(index.getIndexCode(), indexInputVO); |
|
|
|
} |
|
|
|
return map; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param formDTO |
|
|
|
* @param indexList |
|
|
|
* @return void |
|
|
|
* @author yinzuomei |
|
|
|
* @description 计算网格相关-治理能力 |
|
|
|
* @Date 2020/8/26 16:47 |
|
|
|
**/ |
|
|
|
private void calculateGridCorreLationZhiLi(CalculateCommonFormDTO formDTO,List<IndexGroupDetailEntity> indexList){ |
|
|
|
private void calculateGridCorreLationZhiLi(CalculateCommonFormDTO formDTO, List<IndexGroupDetailEntity> indexList) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return void |
|
|
|
* @param formDTO |
|
|
|
* @param indexList |
|
|
|
* @return void |
|
|
|
* @author yinzuomei |
|
|
|
* @description 计算网格相关-服务能力 |
|
|
|
* @description 计算网格相关-服务能力 |
|
|
|
* @Date 2020/8/26 16:48 |
|
|
|
**/ |
|
|
|
private void calculateGridCorreLationFuWu(CalculateCommonFormDTO formDTO,List<IndexGroupDetailEntity> indexList){ |
|
|
|
private void calculateGridCorreLationFuWu(CalculateCommonFormDTO formDTO, List<IndexGroupDetailEntity> indexList) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return void |
|
|
|
* @param formDTO |
|
|
|
* @param indexList |
|
|
|
* @return void |
|
|
|
* @author yinzuomei |
|
|
|
* @description 计算网格相关总分 |
|
|
|
* @Date 2020/8/26 16:50 |
|
|
|
**/ |
|
|
|
private void calculateGridCorreLationTotal(CalculateCommonFormDTO formDTO,List<IndexGroupDetailEntity> indexList){ |
|
|
|
private void calculateGridCorreLationTotal(CalculateCommonFormDTO formDTO, List<IndexGroupDetailEntity> indexList) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @param customerId |
|
|
|
* @return com.epmet.dto.indexcal.CustomerGridInfoDTO |
|
|
|
@ -150,14 +316,14 @@ public class GridCorreLationServiceImpl implements GridCorreLationService { |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return |
|
|
|
* @param formDTO |
|
|
|
* @return |
|
|
|
* @author yinzuomei |
|
|
|
* @description 分页查询网格列表 |
|
|
|
* @Date 2020/8/27 14:42 |
|
|
|
**/ |
|
|
|
@Override |
|
|
|
public List<ScreenCustomerGridDTO> pageGridList(PageQueryGridFormDTO formDTO){ |
|
|
|
public List<ScreenCustomerGridDTO> pageGridList(PageQueryGridFormDTO formDTO) { |
|
|
|
int pageIndex = (formDTO.getPageNo() - NumConstant.ONE) * formDTO.getPageSize(); |
|
|
|
formDTO.setPageIndex(pageIndex); |
|
|
|
return screenCustomerGridDao.pageListByCustomerId(formDTO); |
|
|
|
@ -165,16 +331,15 @@ public class GridCorreLationServiceImpl implements GridCorreLationService { |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @param customerId |
|
|
|
* @param monthId |
|
|
|
* @param formDTO |
|
|
|
* @return java.util.List<com.epmet.dto.indexcollect.FactIndexPartyAblityGridMonthlyDTO> |
|
|
|
* @author yinzuomei |
|
|
|
* @description 党建能力-网格相关事实表 当前客户下,所有网格的党建能力相关五级指标 |
|
|
|
* @Date 2020/8/26 15:52 |
|
|
|
**/ |
|
|
|
@Override |
|
|
|
public List<Map<String,Object>> queryListPartyAblityGrid(String customerId, String monthId) { |
|
|
|
return factIndexPartyAblityGridMonthlyDao.selectListPartyAblityGrid(customerId, monthId); |
|
|
|
public List<Map<String, Object>> queryListPartyAblityGrid(PageQueryGridFormDTO formDTO) { |
|
|
|
return factIndexPartyAblityGridMonthlyDao.selectListPartyAblityGrid(formDTO); |
|
|
|
} |
|
|
|
|
|
|
|
/*网格群众用户数 |
|
|
|
@ -191,29 +356,29 @@ public class GridCorreLationServiceImpl implements GridCorreLationService { |
|
|
|
网格议题转项目率 |
|
|
|
组织“三会一课”次数 |
|
|
|
党员参加“三会一课”人次*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @return java.util.Map<java.lang.String,java.lang.Object> |
|
|
|
* @param customerId |
|
|
|
* @param monthId |
|
|
|
* @return java.util.Map<java.lang.String, java.lang.Object> |
|
|
|
* @author yinzuomei |
|
|
|
* @description 查询党建能力,网格相关,各五级指标最大值,最小值 |
|
|
|
* @Date 2020/8/27 12:47 |
|
|
|
**/ |
|
|
|
public Map<String, Object> queryPartyAblityGridMinAndMax(String customerId, String monthId){ |
|
|
|
return factIndexPartyAblityGridMonthlyDao.selectPartyAblityGridMinAndMax(customerId,monthId); |
|
|
|
public Map<String, Object> queryPartyAblityGridMinAndMax(String customerId, String monthId) { |
|
|
|
return factIndexPartyAblityGridMonthlyDao.selectPartyAblityGridMinAndMax(customerId, monthId); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @param customerId |
|
|
|
* @param monthId |
|
|
|
* @param formDTO |
|
|
|
* @return java.util.List<com.epmet.dto.indexcollect.FactIndexGovrnAblityGridMonthlyDTO> |
|
|
|
* @author yinzuomei |
|
|
|
* @description 当前客户下,所有网格的治理能力相关五级指标 |
|
|
|
* @Date 2020/8/26 15:55 |
|
|
|
**/ |
|
|
|
public List<Map<String,Object>> queryListGovrnAblityGrid(String customerId, String monthId) { |
|
|
|
return factIndexGovrnAblityGridMonthlyDao.selectListGovrnAblityGrid(customerId, monthId); |
|
|
|
public List<Map<String, Object>> queryListGovrnAblityGrid(PageQueryGridFormDTO formDTO) { |
|
|
|
return factIndexGovrnAblityGridMonthlyDao.selectListGovrnAblityGrid(formDTO); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -230,23 +395,22 @@ public class GridCorreLationServiceImpl implements GridCorreLationService { |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param customerId |
|
|
|
* @param monthId |
|
|
|
* @param formDTO |
|
|
|
* @return java.util.List<com.epmet.dto.indexcollect.FactIndexServiceAblityGridMonthlyDTO> |
|
|
|
* @author yinzuomei |
|
|
|
* @description 当前客户下,所有网格的服务能力相关五级指标 |
|
|
|
* @Date 2020/8/26 15:55 |
|
|
|
**/ |
|
|
|
public List<Map<String,Object>> queryListServiceAblityGrid(String customerId, String monthId) { |
|
|
|
return factIndexServiceAblityGridMonthlyDao.selectListServiceAblityGrid(customerId, monthId); |
|
|
|
public List<Map<String, Object>> queryListServiceAblityGrid(PageQueryGridFormDTO formDTO) { |
|
|
|
return factIndexServiceAblityGridMonthlyDao.selectListServiceAblityGrid(formDTO); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return java.util.Map<java.lang.String,java.lang.Object> |
|
|
|
* @param customerId |
|
|
|
* @param monthId |
|
|
|
* @return java.util.Map<java.lang.String, java.lang.Object> |
|
|
|
* @author yinzuomei |
|
|
|
* @description 查询 服务能力,网格相关,各五级指标最大值,最小值 |
|
|
|
* @description 查询 服务能力,网格相关,各五级指标最大值,最小值 |
|
|
|
* @Date 2020/8/27 12:50 |
|
|
|
**/ |
|
|
|
public Map<String, Object> queryServiceAblityGridMinAndMax(String customerId, String monthId) { |
|
|
|
|