19 lines
335 B
Java
19 lines
335 B
Java
|
package cn.bunny.services.mapper;
|
||
|
|
||
|
import cn.bunny.dao.entity.i18n.I18n;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 多语言表 Mapper 接口
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Bunny
|
||
|
* @since 2024-09-28
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface I18nMapper extends BaseMapper<I18n> {
|
||
|
|
||
|
}
|