SysDeptFeign.cs 294 B

12345678910111213
  1. using Microsoft.AspNetCore.Mvc;
  2. using SummerBoot.Feign.Attributes;
  3. using Vo;
  4. namespace Feign
  5. {
  6. [FeignClient(Url = "http://localhost:5296")]
  7. public interface SysDeptFeign
  8. {
  9. [GetMapping("/feign/dept/query")]
  10. Task<DeptFeignVo> GetDeptInfo([Query] long id);
  11. }
  12. }