实现 SourceMessage Inbox 与 AgentBus 入站闭环

This commit is contained in:
andy
2026-07-06 21:23:57 +08:00
parent 5a498635d8
commit 7e276469ef
75 changed files with 4608 additions and 27 deletions

View File

@@ -0,0 +1,17 @@
package cn.nianxx.thhotel;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* TH Hotel 后端应用入口。
*/
@MapperScan("cn.nianxx.thhotel.platform.message.mapper")
@SpringBootApplication
public class ThHotelApplication {
public static void main(String[] args) {
SpringApplication.run(ThHotelApplication.class, args);
}
}