📄 creditslogdao.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 + -