2025-11-24 16:19:09 +08:00
|
|
|
package com.tongran.mtragent;
|
2025-11-17 18:06:37 +08:00
|
|
|
|
2025-11-24 16:19:09 +08:00
|
|
|
import com.tongran.common.security.annotation.EnableCustomConfig;
|
|
|
|
|
import com.tongran.common.security.annotation.EnableRyFeignClients;
|
2025-11-17 18:06:37 +08:00
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 平台管理模块
|
|
|
|
|
*
|
2025-11-24 16:19:09 +08:00
|
|
|
* @author tongran
|
2025-11-17 18:06:37 +08:00
|
|
|
*/
|
|
|
|
|
@EnableCustomConfig
|
|
|
|
|
@EnableRyFeignClients
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
@EnableAsync
|
2025-11-24 16:19:09 +08:00
|
|
|
public class TongRanMtragentApplication
|
2025-11-17 18:06:37 +08:00
|
|
|
{
|
|
|
|
|
public static void main(String[] args)
|
|
|
|
|
{
|
2025-11-24 16:19:09 +08:00
|
|
|
SpringApplication.run(TongRanMtragentApplication.class, args);
|
2025-11-17 18:06:37 +08:00
|
|
|
System.out.println("(♥◠‿◠)ノ゙ RuoYiMtragent模块启动成功 ლ(´ڡ`ლ)゙");
|
|
|
|
|
}
|
|
|
|
|
}
|