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

📄 notedao.java

📁 用struts+hibernate+spring+mysql写的留言板程序
💻 JAVA
字号:
package com.zzx.struts.dao;

import java.util.List;

import com.zzx.struts.vo.Note;

public interface NoteDao {
	public  void insert(Note note);
    public  void delete(int id);
    public  void update(Note note);
    public  List<Note> queryAll();
    public  Note queryById(int id);
    public  List<Note> queryLike(String keyWord);
}

⌨️ 快捷键说明

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