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

📄 creditslogdao.java

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JAVA
字号:
package cn.jsprun.dao;

import java.util.List;

import cn.jsprun.domain.Creditslog;

public interface CreditslogDao {
	public boolean insertCreditslog(Creditslog creditslog);
	public boolean modifyCreditslog(Creditslog creditslog);
	public boolean deleteCreditslog(Creditslog creditslog);
	public List<Creditslog> findAllCreditslog();
	public List<Creditslog> findAllCreditslogByOperation(String []operation);
	public List<Creditslog> findCreditslogByKeys(String keyword);
	public List<Creditslog> findCreditslogByUid(int uid,int maxrow);
	public List<Creditslog> findCreditsLogByHql(String hql,int startrow,int maxrow);
	public int findCreditslogCountbyHql(String hql);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -