资源简介
北大青鸟 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);
}
相关资源
- ado数据库MFC图书管理系统vs2010
- [免费]msp430f149控制PS2键盘并用1602显示
- STC12C5A60S2 CH4521 驱动数码管 显示
- STC12C系列单片机函数库
- ns2下leach协议源码
- windows cygwin ns2安装步骤
- vs2005骑士巡游问题-分治法C
- 51多机通信(内附Proteus及.hex文件)
- 用quartus 2编的全加器(原理图输入)
- 基于J2EE物资出入库管理系统
- txt测井曲线转换las2.0(新编)
-
解决安装vs2012后vs2010 li
nk : fatal er - UCOS2源代码2.91纯净版.
- VisualSVN-VS2019V7.0解除时间限制
- CGCS2000高斯投影各投影带的定义文件
- USB转串口(RS232/RS485/RS422)驱动程序文
- 机器人操作系统ROS2
- librdkafka win7 64位 vs2015编译Release版本
- 群联PS2251量产工具
- 基于S2SH的新闻信息系统
- Spring-Data-Redis2.0+Spring5
- VS2012OpenGL配置所需要的全部libdllh文件
- 基于IAP15F2K61S2单片机的多路温度巡检
- Visual Assist X for vs2005
- VisualSVN-VS2019-7.1.2破解版
- Visual_Assist_X VS2008专用
- VisualSVN 6.0.4 破解版(支持VS2017)
- cocos2d-x飞机大战项目
- ConcreteMathematics2nd.pdf
- IAP15f2k61s2
评论
共有 条评论