package com.ycl.remote.service; import com.ycl.remote.dto.*; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; /** * CityPlatformService 市平台对接服务 * * @version V1.0 * @author: AI * @date: 2022-09-28 15:40 **/ @FeignClient(url = "http://10.53.139.176:81/api", name = "cityApi") public interface CityPlatformService { /** * 事件上报 * * @param paramDto * @return com.ycl.remote.dto.ResultResponseDto * @author AI * @date 2022-09-28 16:12 */ @PostMapping("/unauthorized/external/event/add") String addEvent(EventAddParamDto paramDto); /** * 事件详情 * * @param paramDto * @return com.ycl.remote.dto.ResultResponseDto * @author AI * @date 2022-09-28 16:12 */ @PostMapping("/unauthorized/external/event/process") String getEventProcess(EventProcessParamDto paramDto); }