nxdt-system/bonus-modules/bonus-project/src/main/java/com/bonus/project/BonusProjectApplication.java

36 lines
1.3 KiB
Java
Raw Normal View History

2025-01-16 16:16:53 +08:00
package com.bonus.project;
import com.bonus.common.security.annotation.EnableCustomConfig;
import com.bonus.common.security.annotation.EnableRyFeignClients;
import com.bonus.common.swagger.annotation.EnableCustomSwagger2;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* FileName: ${NAME}
*
* @author tqzhang
* Date: ${DATE} ${TIME}
* Description:${DESCRIPTION}
*/
@EnableCustomConfig
@EnableCustomSwagger2
@EnableRyFeignClients
@SpringBootApplication
public class BonusProjectApplication {
public static void main(String[] args)
{
SpringApplication.run(BonusProjectApplication.class, args);
System.err.println("(♥◠‿◠)ノ゙ 工程模块启动成功 ლ(´ڡ`ლ)゙ \n" +
" .-------. ____ __ \n" +
" | _ _ \\ \\ \\ / / \n" +
" | ( ' ) | \\ _. / ' \n" +
" |(_ o _) / _( )_ .' \n" +
" | (_,_).' __ ___(_ o _)' \n" +
" | |\\ \\ | || |(_,_)' \n" +
" | | \\ `' /| `-' / \n" +
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
}
}