📄 inews.java
字号:
package org.news.dao;
import java.util.List;
import org.news.pojo.News;
import org.news.pojo.NewsType;
public interface INews {
public List queryAll();
public List findByNewsType(NewsType newsType);
public News findById(Integer id);
public int findCountByNewsType(NewsType newsType);
public List findByNewsType(NewsType newsType,int pageSize, int startRow);
public List findByAuthor(String name);
public boolean create(News news);
public boolean updateNews(News news);
public boolean deleteNews(Integer id);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -