package cn.huge.module.client.api;
|
|
import cn.huge.base.common.bo.ReturnBO;
|
import cn.huge.module.disp.dto.DispCaseBaseDTO;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
/**
|
* @title: 公共工具微服务调用接口
|
* @description: 公共工具微服务调用接口
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2021-11-05 16:51:48
|
* @version: 1.0.0
|
*/
|
@FeignClient(name = "dyh-disp")
|
public interface DispClient {
|
|
/**
|
* 系统调度
|
* @url {ctx}/api/client/caseDisp/sysDisp
|
* @param dispCaseBaseDTO 纠纷事件信息
|
* @return Object
|
*/
|
@GetMapping("/api/client/caseDisp/sysDisp")
|
ReturnBO sysDisp(@RequestBody DispCaseBaseDTO dispCaseBaseDTO);
|
}
|