feat(i18n): 新增国际化消息实体与Mapper支持

新增 I18nMessage 实体、Mapper 接口及 XML 映射文件,移除 MyApplication 类上的 @MapperScan 注解,升级 MyBatis-Plus 与 MyBatis 版本至 3.0.3/3.5.5,为后续多语言功能提供数据层基础。
This commit is contained in:
2025-12-01 20:53:44 +08:00
parent af79ca97d4
commit 683accca83
5 changed files with 88 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
package com.yolo.keyborad.mapper;
/*
* @author: ziin
* @date: 2025/12/1 20:40
*/
import com.yolo.keyborad.model.entity.I18nMessage;
import org.apache.ibatis.annotations.Select;
import java.util.List;
public interface I18nMessageMapper {
}