📄 recontentdao.java
字号:
/*
* Created on 2007-1-22
* Last modified on 2007-1-22
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.dao;
import java.util.List;
import com.yeqiangwei.club.dao.model.ReContent;
import com.yeqiangwei.club.exception.DAOException;
import com.yeqiangwei.club.param.TopicParameter;
public interface ReContentDAO extends BaseDAO<ReContent, TopicParameter>{
public ReContent 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -