Files
gzh-server/src/main/java/com/guahao/common/base/BaseMapper.java
2026-01-07 10:36:02 +08:00

12 lines
274 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.guahao.common.base;
import tk.mybatis.mapper.common.Mapper;
import tk.mybatis.mapper.common.MySqlMapper;
/**
* 通用mapper被其他mapper所继承
* @description:
* @author:王艳
*/
public interface BaseMapper<T> extends Mapper<T>, MySqlMapper<T> {
}