package com.stylefeng.guns.modular.system.service;
|
|
import com.stylefeng.guns.modular.system.dto.CommentQuery;
|
import com.stylefeng.guns.modular.system.model.FindComment;
|
import com.baomidou.mybatisplus.service.IService;
|
import com.stylefeng.guns.modular.system.vo.CommentVO;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 发现评论 服务类
|
* </p>
|
*
|
* @author 无关风月
|
* @since 2024-02-06
|
*/
|
public interface IFindCommentService extends IService<FindComment> {
|
|
List<CommentVO> getCommentOne(CommentQuery id);
|
|
List<CommentVO> getCommentTwo(Integer id);
|
|
List<CommentVO> getCommentThree(CommentQuery id);
|
}
|