zhanghua
2022-09-28 038ab5f05825d7f49872ae61bd25bad9e80193aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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<com.ycl.remote.dto.EventAddResponseDto>
     * @author AI
     * @date 2022-09-28 16:12
     */
    @PostMapping("/unauthorized/external/event/add")
    ResultResponseDto<EventAddResponseDto> addEvent(EventAddParamDto paramDto);
 
    /**
     * 事件详情
     *
     * @param paramDto
     * @return com.ycl.remote.dto.ResultResponseDto<com.ycl.remote.dto.EventProcessResponseDto>
     * @author AI
     * @date 2022-09-28 16:12
     */
    @PostMapping("/unauthorized/external/event/process")
    ResultResponseDto<EventProcessResponseDto> getEventProcess(EventProcessParamDto paramDto);
 
 
}