inews.java
来自「学校新闻发布系统」· Java 代码 · 共 27 行
JAVA
27 行
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 + =
减小字号Ctrl + -
显示快捷键?