Browse Source

网格相关

dev_shibei_match
zxc 5 years ago
parent
commit
a55cc4cabd
  1. 36
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/CalGridIndexService.java
  2. 53
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/impl/CalGridIndexServiceImpl.java

36
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/CalGridIndexService.java

@ -0,0 +1,36 @@
package com.epmet.service.evaluationindex.extract;
/**
* @Author zxc
* @DateTime 2020/9/18 9:52 上午
*/
public interface CalGridIndexService {
/**
* @Description 计算网格指标党建能力
* @param customerId
* @param monthId
* @author zxc
* @date 2020/9/18 9:56 上午
*/
Boolean calGridIndexPartyAbility(String customerId,String monthId);
/**
* @Description 计算网格指标治理能力
* @param customerId
* @param monthId
* @author zxc
* @date 2020/9/18 9:56 上午
*/
Boolean calGridIndexGovernAbility(String customerId,String monthId);
/**
* @Description 计算网格指标服务能力
* @param customerId
* @param monthId
* @author zxc
* @date 2020/9/18 9:56 上午
*/
Boolean calGridIndexServiceAbility(String customerId,String monthId);
}

53
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/impl/CalGridIndexServiceImpl.java

@ -0,0 +1,53 @@
package com.epmet.service.evaluationindex.extract.impl;
import com.epmet.commons.dynamic.datasource.annotation.DataSource;
import com.epmet.constant.DataSourceConstant;
import com.epmet.service.evaluationindex.extract.CalGridIndexService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
* @Author zxc
* @DateTime 2020/9/18 9:53 上午
*/
@Service
@Slf4j
@DataSource(DataSourceConstant.EVALUATION_INDEX)
public class CalGridIndexServiceImpl implements CalGridIndexService {
/**
* @Description 计算网格指标党建能力
* @param customerId
* @param monthId
* @author zxc
* @date 2020/9/18 9:56 上午
*/
@Override
public Boolean calGridIndexPartyAbility(String customerId, String monthId) {
return null;
}
/**
* @Description 计算网格指标治理能力
* @param customerId
* @param monthId
* @author zxc
* @date 2020/9/18 9:56 上午
*/
@Override
public Boolean calGridIndexGovernAbility(String customerId, String monthId) {
return null;
}
/**
* @Description 计算网格指标服务能力
* @param customerId
* @param monthId
* @author zxc
* @date 2020/9/18 9:56 上午
*/
@Override
public Boolean calGridIndexServiceAbility(String customerId, String monthId) {
return null;
}
}
Loading…
Cancel
Save