- 新建模块Partner-Api,推进Partner适配核心服务注册机制。

- 将原有的模块体系进一步区分,分离模型持有能力与调用能力,Model将有Module自身持有,可通过ActivateModel开启相应能力
This commit is contained in:
2025-07-21 23:47:52 +08:00
parent c9c9b05f18
commit 954095aa55
154 changed files with 1426 additions and 595 deletions

View File

@@ -0,0 +1,5 @@
public interface InterfaceTest {
default String getName(){
return "111";
}
}