blob: 07281de46a9657873d914b20c36cfec947b7856a [file] [log] [blame]
package com.example.g8backend.config;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@MapperScan("com.example.g8backend.mapper") // 扫描 Mapper 接口
public class MyBatisPlusConfig {
}