代码合并、调整报名;编译通过

This commit is contained in:
FCL
2025-10-10 11:15:06 +08:00
parent 4a9da2245e
commit 4636fc6696
61 changed files with 237 additions and 37 deletions

View File

@@ -2,6 +2,9 @@ package com.zt.plat.qms;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Import;
import tech.zzjc.tio.starter.TioServerAutoConfiguration;
import tech.zzjc.tio.starter.annotation.EnableTioServerServer;
/**
* Qms 服务器的启动类
@@ -11,6 +14,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@SuppressWarnings("SpringComponentScan") // 忽略 IDEA 无法识别 ${zt.info.base-package}
@SpringBootApplication(scanBasePackages = {"${zt.info.base-package}.qms", "${zt.info.base-package}.module"},
excludeName = {})
@EnableTioServerServer
@Import(TioServerAutoConfiguration.class)
public class QmsServerApplication {
public static void main(String[] args) {