?? newssortdao.java.svn-base
字號:
package com.pure.dao;
import java.util.List;
import org.springframework.dao.DataAccessException;
import com.pure.domain.NewsSort;
import com.pure.page.Page;
/**
* 資訊(新聞)分類DAO接口
*
* @author pure
*
*/
public interface NewsSortDAO {
void insertNewsSort(NewsSort newsSort) throws DataAccessException;
public void updateNewsSort(NewsSort newsSort) throws DataAccessException;
public List getNewsSortList(Page page);
public List getNewsSortList();
public NewsSort getNewsSort(int id);
public void delNewsSort(int id);
public int getTotal(String hql);
public void seq(int id, int seq);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -