|
@ -7,6 +7,7 @@ import com.elink.esua.epdc.modules.feign.fallback.AnalysisPcFromEventFallback; |
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
import org.springframework.cloud.openfeign.FeignClient; |
|
|
import org.springframework.http.MediaType; |
|
|
import org.springframework.http.MediaType; |
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
import org.springframework.web.bind.annotation.GetMapping; |
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 数据分析模块调用 |
|
|
* 数据分析模块调用 |
|
@ -27,4 +28,14 @@ public interface AnalysisPcFromEventFeignClient { |
|
|
@GetMapping(value = "analysis/category/getCategoryCode", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
@GetMapping(value = "analysis/category/getCategoryCode", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
Result<EpmetCategoryCodeOption> getCategoryCode(); |
|
|
Result<EpmetCategoryCodeOption> getCategoryCode(); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 事件分类修改或新增时同步上报县平台 |
|
|
|
|
|
* |
|
|
|
|
|
* @return com.elink.esua.epdc.commons.tools.utils.Result |
|
|
|
|
|
* @author lc |
|
|
|
|
|
* @since 2021/11/11 9:39 |
|
|
|
|
|
*/ |
|
|
|
|
|
@PostMapping("analysis/category/uploadCategoryCode") |
|
|
|
|
|
Result uploadCategoryCode(); |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|