2022-08-17 12:55:44 +08:00

29 lines
845 B
Java

/**
* -----------------------------------
* 林风社交论坛开源版本请务必保留此注释头信息
* 开源地址: https://gitee.com/virus010101/linfeng-community
* 演示站点: https://www.linfeng.tech
* 可正常分享和学习源码,不得用于非法牟利!
* 商业版购买联系技术客服 QQ: 3582996245
* Copyright (c) 2021-2023 linfeng all rights reserved.
* 版权所有 ,侵权必究!
* -----------------------------------
*/
package io.linfeng.modules.app.dao;
import io.linfeng.modules.app.entity.CommentThumbsEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
/**
*
*
* @author linfeng
* @email 3582996245@qq.com
* @date 2022-01-25 19:00:24
*/
@Mapper
public interface CommentThumbsDao extends BaseMapper<CommentThumbsEntity> {
}