6 changed files with 58 additions and 3 deletions
@ -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); |
||||
|
|
||||
|
} |
@ -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…
Reference in new issue