G2X81FeignService.java 659 字节
package com.sy.service.feigin;


import com.sy.model.LockFeignResponse;
import com.sy.model.NoticeLock;
import com.sy.response.ResultJson;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;

/**
 * 金二报文发送接口
 * @author mrz
 */
@FeignClient(name = "SEND-IBMMQ-SERVIER",fallbackFactory = G2X81FeignFallBackFactory.class)
public interface G2X81FeignService {

    @PostMapping("/ibm/mq/sendMsg")
    ResultJson send(@RequestParam("message") String message);
}