审查视图

src/main/java/com/sy/service/feigin/StationManageFeignService.java 637 字节
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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);
}