/** * Copyright (c) 2018 人人开源 All rights reserved. * * https://www.renren.io * * 版权所有,侵权必究! */ package com.example.server.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.springframework.stereotype.Repository; /** * 基础Dao * * @author hehz * @since 1.0.0 */ @Repository public interface BaseDao extends BaseMapper { }