2026-02-24 23:26:41 +08:00
|
|
|
package com.mini.mybigscreen;
|
|
|
|
|
|
2026-03-02 10:36:34 +08:00
|
|
|
|
2026-02-24 23:26:41 +08:00
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
|
|
|
|
|
@SpringBootApplication
|
|
|
|
|
@MapperScan("com.mini.mybigscreen.biz.mapper")
|
|
|
|
|
public class MyBigScreenApplication {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
SpringApplication.run(MyBigScreenApplication.class, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|