recontentdao.java

来自「这是一款最新的野蔷薇论坛源码,有需要的朋友可以尽情下载」· Java 代码 · 共 34 行

JAVA
34
字号
/* 
 * 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.param.TopicParameter;

public interface ReContentDAO extends BaseDAO<ReContent, TopicParameter>{
	
	public ReContent findByReplyId(int replyId);
	
	/**
	 * 按主题ID批量删除回复内容
	 * @param topicId
	 * @return
	 */
	public int deleteByTopicId(int topicId);
	
	/**
	 * 按主题ID集合批量删除回复内容
	 * @param obj
	 * @return
	 */
	public int deleteByTopicId(List<Integer> ids);
	
	
	public int deleteByReplyId(List<Integer> ids);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?