| | |
| | | package cc.mrbird.febs.server.hr.feign; |
| | | |
| | | import cc.mrbird.febs.common.core.entity.FebsResponse; |
| | | import cc.mrbird.febs.common.core.entity.constant.FebsServerConstant; |
| | | import cc.mrbird.febs.common.core.entity.system.Dept; |
| | | import cc.mrbird.febs.common.core.entity.system.DicItem; |
| | | import cc.mrbird.febs.server.hr.feign.fallback.RemoteDeptServiceFallback; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | |
| | | |
| | | @GetMapping("dept/userRightDepts") |
| | | String userRightDepts(); |
| | | |
| | | @GetMapping("dicItem/getAllDicitemsAll") |
| | | List<DicItem> getAllDicitemsAll(); |
| | | } |