资源简介

北大青鸟 S2结业项目 仿葫芦侠三楼 带数据库

资源截图

代码片段和文件信息

package com.bbs.dao;

import com.bbs.entity.Comment;
import com.bbs.entity.Reward;
import com.bbs.entity.Topic;

import java.util.List;

public interface CommentDao {

/**
 * 根据 话题id 查询打赏
 * @param topicId
 * @return
 */
List getRewardsByTopicId(String topicId);

/**
 * 根据 话题id 查询话题对象
 * @param topicId
 * @return
 */
Topic getTopicById(String topicId);

/**
 * 发布评论
 * @param comment
 * @return
 */
int releaseComment(Comment comment);

/**
 * 删除对象
 * @param id
 * @return
 */
int daleteComment(String id);

/**
 * 查询指定 分页 对象 集合
 * @param topicId 评论Id
 * @param pagination 页码
 * @param total 总页数
 * @return 对象 集合
 */
List getCommentPaging(int topicId int pagination int total);

/**
 * 获取页码总数量
 * @return
 */
int getCommentCount(String id);

/**
 * 根据帖子id删除帖子下的所有的评论
 * @param Topicid
 * @return
 */
int setComment_topicId_delete(String Topicid);
}

评论

共有 条评论