Browse Source

添加用户服务服务间调用的接口

tuonina 6 years ago
parent
commit
53e2650180

+ 10 - 0
cloud-bus/src/main/java/cn/gygxzc/envir/entity/PushModel.java

@@ -77,4 +77,14 @@ public class PushModel {
     public void setToUserIds(List<Long> toUserIds) {
         this.toUserIds = toUserIds;
     }
+
+
+    /**
+     * 这个先随便写点吧,
+     * @return
+     */
+    @Override
+    public String toString() {
+        return String.format("type: %s,content:%s",type,content);
+    }
 }

+ 26 - 0
zen-api/src/main/kotlin/cn/gygxzc/envir/sys/service/IFUserService.kt

@@ -0,0 +1,26 @@
+package cn.gygxzc.envir.sys.service
+
+import cn.gygxzc.tina.cloud.jwt.session.bean.User
+import org.springframework.cloud.openfeign.FeignClient
+import org.springframework.web.bind.annotation.*
+
+/**
+ * Created by niantuo on 2018/12/17.
+ * 通过feign 调用获取用户信心。
+ */
+@FeignClient("sys")
+interface IFUserService {
+
+    @RequestMapping(method = [RequestMethod.POST], value = ["/feign/user/account"])
+    fun getAccountByIds(@RequestBody ids: List<Long>): List<String>
+
+    @RequestMapping(value = ["/feign/user/account/{id}"], method = [RequestMethod.GET])
+    fun getAccountById(@PathVariable("id") id: Long): String
+
+    @RequestMapping(value = ["/feign/user/{id}"], method = [RequestMethod.GET])
+    fun getUserInfo(@PathVariable("id") id: Long): User
+
+    @RequestMapping(value = ["/feign/user/info/{account}"], method = [RequestMethod.GET])
+    fun getUserByAccount(@PathVariable("account") account: String): User
+
+}