|
|
@ -11,7 +11,6 @@ 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.PathVariable; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
@ -229,11 +228,11 @@ public interface AnalysisFeignClient { |
|
|
|
/** |
|
|
|
* 网格治理项目详情 |
|
|
|
* |
|
|
|
* @param id |
|
|
|
* @param formDto |
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result<com.elink.esua.epdc.dto.item.result.EpdcScreenItemDetailResultDTO> |
|
|
|
* @author lc |
|
|
|
* @since 2021/8/20 19:35 |
|
|
|
*/ |
|
|
|
@GetMapping(value = "analysis/screen/gridGovernance/itemDetail/{id}",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EpdcScreenItemDetailResultDTO> itemDetail(@PathVariable String id); |
|
|
|
@GetMapping(value = "analysis/screen/gridGovernance/itemDetail",consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<EpdcScreenItemDetailResultDTO> itemDetail(EpdcScreenItemDetailFormDTO formDto); |
|
|
|
} |
|
|
|