18 lines
377 B
Java
18 lines
377 B
Java
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> {
|
|
|
|
}
|