|
|
@ -1,9 +1,13 @@ |
|
|
|
package com.epmet.service.evaluationindex.extract.toscreen.impl; |
|
|
|
|
|
|
|
import com.epmet.service.evaluationindex.extract.toscreen.PartyBaseInfoService; |
|
|
|
import com.epmet.service.evaluationindex.screen.ScreenCustomerAgencyService; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Desciption 党员基本情况 |
|
|
|
* @Author zxc |
|
|
@ -13,7 +17,8 @@ import org.springframework.stereotype.Service; |
|
|
|
@Slf4j |
|
|
|
public class PartyBaseInfoServiceImpl implements PartyBaseInfoService { |
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
private ScreenCustomerAgencyService agencyService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 统计基层党建-党员基本情况 |
|
|
@ -24,6 +29,9 @@ public class PartyBaseInfoServiceImpl implements PartyBaseInfoService { |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public Boolean statsPartyMemberBaseInfoToScreen(String customerId, String dateId) { |
|
|
|
String agencyId = "cyagstrbee8711eaa1fac03fd56f7847"; |
|
|
|
Map<String, Object> stringObjectMap = agencyService.selectAllSubAgencyId(agencyId, customerId); |
|
|
|
System.out.println(stringObjectMap); |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|