叶松
2023-11-22 3b7f9e4425ad1fe34afb6a3a121c5b943432db5e
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.thhy;
 
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
@SpringBootApplication
@MapperScan(basePackages = {"com.thhy.screen.modules.*.*.mapper"})
public class ScreenApplication {
    public static void main(String[] args) {
        SpringApplication.run(ScreenApplication.class,args);
    }
}