You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
Java
35 lines
1.2 KiB
Java
package com.hw.dms;
|
|
|
|
import com.hw.common.security.annotation.EnableCustomConfig;
|
|
import com.hw.common.security.annotation.EnableRyFeignClients;
|
|
import com.hw.common.swagger.annotation.EnableCustomSwagger2;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* 系统模块
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@EnableCustomConfig
|
|
@EnableCustomSwagger2
|
|
@EnableRyFeignClients
|
|
@SpringBootApplication
|
|
public class HwDmsApplication
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
SpringApplication.run(HwDmsApplication.class, args);
|
|
System.out.println("(♥◠‿◠)ノ゙ 设备模块启动成功 ლ(´ڡ`ლ)゙ \n" +
|
|
" .-------. ____ __ \n" +
|
|
" | _ _ \\ \\ \\ / / \n" +
|
|
" | ( ' ) | \\ _. / ' \n" +
|
|
" |(_ o _) / _( )_ .' \n" +
|
|
" | (_,_).' __ ___(_ o _)' \n" +
|
|
" | |\\ \\ | || |(_,_)' \n" +
|
|
" | | \\ `' /| `-' / \n" +
|
|
" | | \\ / \\ / \n" +
|
|
" ''-' `'-' `-..-' ");
|
|
}
|
|
}
|