package com.sy.service.feigin; import com.sy.response.ResultJson; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; /** * 金二报文发送接口 * @author mrz */ @FeignClient(name = "STATION-MANAGE",fallbackFactory = StationManageFallBackFactory.class) public interface StationManageFeignService { @GetMapping("/bayonet/page") ResultJson getChanels(@RequestParam(value = "channel") String channel,@RequestParam(value = "pageNum") int pageNum,@RequestParam(value = "pageSize") int pageSize); }