⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contentdao.java

📁 野蔷薇论坛源码 java 自己看看吧。 学习用
💻 JAVA
字号:
/*
 * Created on 2005-10-22
 * Last modified on 2007-10-1
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.dao;


import java.util.List;

import com.yeqiangwei.club.dao.model.Content;
import com.yeqiangwei.club.exception.DAOException;
import com.yeqiangwei.club.param.TopicParameter;

public interface ContentDAO extends BaseDAO<Content, TopicParameter>{

	
	public int deleteByTopicId(int topicId) throws DAOException;

	public int deleteByTopicId(List<Integer> ids) throws DAOException;

	public Content findByTopicId(int topicId);
	
	
}

⌨️ 快捷键说明

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