Browse Source

党建引领

master
zxc 5 years ago
parent
commit
911fc32393
  1. 18
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/toscreen/PartyGuideService.java
  2. 26
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/toscreen/impl/PartyGuideServiceImpl.java

18
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/toscreen/PartyGuideService.java

@ -0,0 +1,18 @@
package com.epmet.service.evaluationindex.extract.toscreen;
/**
* @Author zxc
* @DateTime 2020/9/24 5:05 下午
*/
public interface PartyGuideService {
/**
* @Description 党建引领抽取
* @param customerId
* @param dateId
* @author zxc
* @date 2020/9/24 5:10 下午
*/
Boolean partyGuideExtract(String customerId,String dateId);
}

26
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/evaluationindex/extract/toscreen/impl/PartyGuideServiceImpl.java

@ -0,0 +1,26 @@
package com.epmet.service.evaluationindex.extract.toscreen.impl;
import com.epmet.service.evaluationindex.extract.toscreen.PartyGuideService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
* @Author zxc
* @DateTime 2020/9/24 5:06 下午
*/
@Service
@Slf4j
public class PartyGuideServiceImpl implements PartyGuideService {
/**
* @Description 党建引领抽取
* @param customerId
* @param dateId
* @author zxc
* @date 2020/9/24 5:10 下午
*/
@Override
public Boolean partyGuideExtract(String customerId, String dateId) {
return null;
}
}
Loading…
Cancel
Save