?? reckonbizpojoimpl.java
字號:
package tarena.netctoss.biz.impl;
import java.util.Collection;
import tarena.netctoss.biz.IReckonMgmtBIZ;
import tarena.netctoss.dao.IReckonMgmtDAO;
public class ReckonBIZPOJOImpl implements IReckonMgmtBIZ {
private IReckonMgmtDAO reckonDao;
public Integer countReckons(int year, int month) {
// TODO Auto-generated method stub
return null;
}
public Collection findAllReckons(int year, int month) {
// TODO Auto-generated method stub
return reckonDao.selectAllReckons(year, month);
}
public Collection findReckonByLoginName(String loginName, int year,
int month) {
// TODO Auto-generated method stub
return reckonDao.selectReckonByLoginName(year, month, loginName);
}
public Collection findReckonDetailsByLoginName(String loginName, int year,
int month) {
// TODO Auto-generated method stub
return reckonDao.selectReckonDetailsByLoginName(year, month, loginName);
}
public Collection pagination(int pageNumber, int pageLength, int year,
int month) {
// TODO Auto-generated method stub
return null;
}
public IReckonMgmtDAO getReckonDao() {
return reckonDao;
}
public void setReckonDao(IReckonMgmtDAO reckonDao) {
this.reckonDao = reckonDao;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -