systemlogserviceimpl.java
来自「q企业web应用 q企业web应用 q企业web应用」· Java 代码 · 共 33 行
JAVA
33 行
package com.meybosoft.microerp.business.impl;
import java.util.Collection;
import java.util.Date;
import com.easyjf.web.tools.DbPageList;
import com.easyjf.web.tools.IPageList;
import com.meybosoft.microerp.business.SystemLogService;
import com.meybosoft.microerp.system.SystemLog;
public class SystemLogServiceImpl extends AbstractDAOServiceSupport implements SystemLogService {
public boolean addSystemLog(SystemLog log) {
return this.dao.save(log);
}
public boolean delSystemLog(SystemLog log) {
return this.dao.del(log);
}
public boolean exportSystemLog(Date date1, Date date2, int backType) {
return false;
}
public IPageList querySystemLog(String scope, Collection paras,
int currentPage, int pageSize) {
DbPageList pageList=new DbPageList(SystemLog.class,scope,paras,dao);
pageList.doList(currentPage, pageSize);
return pageList;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?