李旭东
2023-11-09 9a12866758b1749953e1330c2e64d25d7a6a05b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.thhy;
 
import org.mybatis.spring.annotation.MapperScan;
import org.mybatis.spring.annotation.MapperScans;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
 
@SpringBootApplication
@MapperScan(basePackages = {"com.thhy.pm.modules.*.*.mapper"})
@EnableFeignClients
public class ProjectManageApplication {
    public static void main(String[] args) {
        SpringApplication.run(ProjectManageApplication.class,args);
    }
}