BaseDao.java 213 Bytes
Newer Older
mengmeng's avatar
mengmeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package io.hmit.common.dao;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

/**
 * 基础Dao
 *
 * @author zsh 408538940@qq.com
 * @since 1.0.0
 */
public interface BaseDao<T> extends BaseMapper<T> {

}