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

📄 attachmentsdao.java

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JAVA
字号:
package cn.jsprun.dao.posts;

import java.util.List;
import cn.jsprun.domain.Attachments;
import cn.jsprun.struts.form.posts.AttachmentsForm;

public interface AttachmentsDao {

	public String findByAttachmentsForm(AttachmentsForm attachmentsForm);
	public Integer deleteArray(String[] aids);
	public List<Attachments> findByPostsID(Integer pid);
	public List<Attachments> findAttchmentsByJs(String hql,int startrow,int maxrow);
	public Attachments findAttachmentsById(int aid);
	public int insertAttachments(Attachments attachments);
	public boolean updateAttachments(Attachments attachments);
	public boolean deleteAttachments(Attachments attachments);
	public List<Attachments> findByattaByTid(Integer tid);
	public List<Attachments> getAttachmentListByTid(Integer tid);
	public void updateAttachment(List<Attachments> attachmentsList);
}

⌨️ 快捷键说明

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