1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ard.config;
|
| import org.mybatis.spring.annotation.MapperScan;
| import org.springframework.context.annotation.Configuration;
|
| /**
| * @Description:
| * @ClassName: ApplicationConfig
| * @Author: 刘苏义
| * @Date: 2023年10月07日9:54:46
| **/
| @Configuration
| @MapperScan("com.ard.**.mapper")
| public class ApplicationConfig {
| }
|
|