|
@@ -0,0 +1,14 @@
|
|
|
|
|
+package space.anyi.openAPI.comom.service.inside;
|
|
|
|
|
+
|
|
|
|
|
+import space.anyi.openAPI.comom.model.user.User;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * @ProjectName: open-api-commom
|
|
|
|
|
+ * @FileName: InsideUserService
|
|
|
|
|
+ * @Author: 杨逸
|
|
|
|
|
+ * @Data:2025/11/27 11:31
|
|
|
|
|
+ * @Description: 服务内部使用的用户信息,RPC使用
|
|
|
|
|
+ */
|
|
|
|
|
+public interface InsideUserService {
|
|
|
|
|
+ User getUserByAccessKey(String accessKey);
|
|
|
|
|
+}
|