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

📄 reckonbizpojoimpl.java

📁 电信用户自服务系统
💻 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 + -