📄 aboutdao.java.svn-base
字号:
package com.pure.dao;
import java.util.List;
import org.springframework.dao.DataAccessException;
import com.pure.domain.About;
import com.pure.page.Page;
/**
* 关于我们DAO接口
*
* @author pure
*
*/
public interface AboutDAO {
public void insertAbout(About dishSort) throws DataAccessException;
public void saveOrUpdate(About about);
public void updateAbout(About about) throws DataAccessException;
public List getAboutList(Page page);
public List getAboutList(int num, String hql);
public About getAbout(int id);
public About getFirstAbout();
public void delAbout(int id);
public int getTotal(String hql);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -