rcontentdao.java
来自「社区文章采用的是平板、树形自由选择的两种展示方式」· Java 代码 · 共 37 行
JAVA
37 行
/*
* Created on 2007-1-22
* Last modified on 2007-11-9
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.dao;
import java.util.List;
import com.yeqiangwei.club.model.RContent;
import com.yeqiangwei.club.exception.DAOException;
import com.yeqiangwei.club.param.TopicParameter;
public interface RContentDAO extends BaseDAO<RContent, TopicParameter>{
public RContent findByReplyId(int replyId);
/**
* 按主题ID批量删除回复内容
* @param topicId
* @return
*/
public int deleteByTopicId(int topicId) throws DAOException;
public int deleteByReplyId(int replyId) throws DAOException;
/**
* 按主题ID集合批量删除回复内容
* @param obj
* @return
*/
public int deleteByTopicId(List<Integer> ids) throws DAOException;
public int deleteByReplyId(List<Integer> ids) throws DAOException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?