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

📄 inews.java

📁 学校新闻发布系统
💻 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 + -