|
|
@ -3,15 +3,12 @@ package com.elink.esua.epdc.feign; |
|
|
|
import com.elink.esua.epdc.commons.tools.constant.ServiceConstant; |
|
|
|
import com.elink.esua.epdc.commons.tools.utils.Result; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.screen.form.*; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.screen.form.EpdcScreenEpidemicCommunityVaccinationStatisticsFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.screen.form.EpdcScreenGridGovernanceItemFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.screen.form.EpdcScreenVaccinationAgeVaccinationStatisticsFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.analysis.pc.screen.result.*; |
|
|
|
import com.elink.esua.epdc.feign.fallback.AnalysisFeignClientFallback; |
|
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
|
import org.springframework.http.MediaType; |
|
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -140,6 +137,27 @@ public interface AnalysisFeignClient { |
|
|
|
@GetMapping(value = "analysis/screen/partyBuilding/brightIdentity", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<List<EpdcScreenPartyBuildingBrightIdentityResultDTO>> brightIdentity(EpdcScreenPartyBuildingBrightIdentityFormDTO formDto); |
|
|
|
|
|
|
|
/** |
|
|
|
* 党建引领-党员亮身份推荐 |
|
|
|
* @params [id] |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
* @author zhangfenghe |
|
|
|
* @since 2021/8/30 9:08 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "analysis/screen/partyBuilding/brightIdentity/recommended",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommended(String id); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 党建引领-党员亮身份取消推荐 |
|
|
|
* @params [id] |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
* @author zhangfenghe |
|
|
|
* @since 2021/8/30 9:08 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "analysis/screen/partyBuilding/brightIdentity/recommendedCancel",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result recommendedCaancel(String id); |
|
|
|
|
|
|
|
/** |
|
|
|
* 党建引领-党员画像 |
|
|
|
* |
|
|
|