实现AgentBus自动分发SuperAgent链路

This commit is contained in:
andy
2026-07-12 23:53:50 +08:00
parent c3dad8eae9
commit 53b530d0b3
42 changed files with 2512 additions and 135 deletions

View File

@@ -3,6 +3,7 @@ package cn.nianxx.thhotel;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
/**
* TH Hotel 后端应用入口。
@@ -18,6 +19,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
"cn.nianxx.thhotel.workflows.reservation.mapper",
"cn.nianxx.thhotel.integrations.ai.superagent.mapper"
})
@EnableScheduling
@SpringBootApplication
public class ThHotelApplication {