package com.stylefeng.guns.modular.system.dao;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import com.stylefeng.guns.modular.system.dto.FindCommentQuery;
|
import com.stylefeng.guns.modular.system.model.FindComment;
|
import com.stylefeng.guns.modular.system.vo.CommentVO;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 发现评论 Mapper 接口
|
* </p>
|
*
|
* @author 无关风月
|
* @since 2024-02-06
|
*/
|
public interface FindCommentMapper extends BaseMapper<FindComment> {
|
|
List<CommentVO> getCommentOne(@Param("id") Integer id);
|
|
List<CommentVO> getCommentTwo(@Param("id") Integer id);
|
|
List<CommentVO> selectFindComment(@Param("req") FindCommentQuery req);
|
}
|