This commit is contained in:
sxu 2023-12-04 12:57:13 +08:00
parent 9357d0c959
commit 3185c5d3e9
11 changed files with 5 additions and 7 deletions

View File

@ -7,8 +7,8 @@ import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* 订单模块
*
* 设备模块
*
* @author xsheng
* @date 2023-12-01
*/
@ -16,10 +16,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@EnableCustomSwagger2
@EnableRyFeignClients
@SpringBootApplication
public class ZlptOrderApplication
{
public static void main(String[] args)
{
public class ZlptOrderApplication {
public static void main(String[] args) {
SpringApplication.run(ZlptOrderApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 订单模块启动成功 ლ(´ڡ`ლ)゙ \n" +
" .-------. ____ __ \n" +
@ -32,4 +30,4 @@ public class ZlptOrderApplication
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
}
}
}