南昌市物联网技防平台-学校版后台
zengh
2021-06-03 723946c6b272e5aa4c7ec110ff1395f6c2b23e89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.springblade.jfpt.equipment.feign;
 
 
import org.springblade.common.entity.ReportReturnData;
import org.springblade.common.vo.DeptVo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
import java.util.List;
 
@FeignClient(value = "blade-system")
public interface DeptFeignApi {
 
 
    @GetMapping("/dept/selDeptList")
    List<DeptVo> selDeptList();
 
}