IFUserService.kt 933 B

1234567891011121314151617181920212223242526
  1. package cn.gygxzc.envir.sys.service
  2. import cn.gygxzc.tina.cloud.jwt.session.bean.User
  3. import org.springframework.cloud.openfeign.FeignClient
  4. import org.springframework.web.bind.annotation.*
  5. /**
  6. * Created by niantuo on 2018/12/17.
  7. * 通过feign 调用获取用户信心。
  8. */
  9. @FeignClient("sys")
  10. interface IFUserService {
  11. @RequestMapping(method = [RequestMethod.POST], value = ["/feign/user/account"])
  12. fun getAccountByIds(@RequestBody ids: List<Long>): List<String>
  13. @RequestMapping(value = ["/feign/user/account/{id}"], method = [RequestMethod.GET])
  14. fun getAccountById(@PathVariable("id") id: Long): String
  15. @RequestMapping(value = ["/feign/user/{id}"], method = [RequestMethod.GET])
  16. fun getUserInfo(@PathVariable("id") id: Long): User
  17. @RequestMapping(value = ["/feign/user/info/{account}"], method = [RequestMethod.GET])
  18. fun getUserByAccount(@PathVariable("account") account: String): User
  19. }