refactor(core): 统一实体类引用并优化依赖配置

This commit is contained in:
lsym004933
2026-01-13 19:58:25 +08:00
parent 39c20b61e0
commit 5730ae5046
33 changed files with 75 additions and 37 deletions

View File

@@ -0,0 +1,13 @@
package cn.fateverse.common.security.dubbo;
import cn.fateverse.common.core.entity.User;
public interface DubboUserSearchService {
/**
* 通过用户名查询用户信息
*
* @param username 用户名称
* @return 用户信息
*/
User getUserByUsername(String username);
}