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

📄 iitemdao.java

📁 我的智囊团,学习三种框架很好的源码包含分页.
💻 JAVA
字号:
package org.lxh.myzngt.dao;

import java.util.List;

import org.lxh.myzngt.vo.Item;

public interface IItemDAO {
	// 得到全部的栏目
	public List queryAll() throws Exception;

	// 删除栏目
	public void delete(int itemid) throws Exception;

	// 更新栏目
	public void update(Item item) throws Exception;

	// 按栏目ID查询
	public Item queryById(int itemid) throws Exception;
	
	// 增加新栏目
	public void insert(Item item) throws Exception ;
}

⌨️ 快捷键说明

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