blob: 07281de46a9657873d914b20c36cfec947b7856a [file] [log] [blame]
wuchimedesa1bf2782025-03-27 15:08:54 +08001package com.example.g8backend.config;
2
3import org.mybatis.spring.annotation.MapperScan;
4import org.springframework.context.annotation.Configuration;
5
6@Configuration
7@MapperScan("com.example.g8backend.mapper") // 扫描 Mapper 接口
8public class MyBatisPlusConfig {
9}