44323
2024-04-23 16b704d18a875d1fb63827aaa507790ba2bef5be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.stylefeng.guns.modular.system.dao;
 
import com.stylefeng.guns.modular.system.dto.CommentQuery;
import com.stylefeng.guns.modular.system.model.FindComment;
import com.baomidou.mybatisplus.mapper.BaseMapper;
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("req") CommentQuery id);
 
    List<CommentVO> getCommentTwo(@Param("id") Integer id);
 
    List<CommentVO> getCommentThree(@Param("req") CommentQuery id);
 
}