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

📄 accountbizpojoimpl.java

📁 电信用户自服务系统
💻 JAVA
字号:
package tarena.netctoss.biz.impl;

import java.util.Collection;

import tarena.netctoss.biz.IAccountMgmtBIZ;
import tarena.netctoss.dao.IAccountMgmtDAO;

public class AccountBIZPOJOImpl implements IAccountMgmtBIZ {
	
	private IAccountMgmtDAO accountDao;
	
	public Collection findAccountDetails(String labIp, int year, int month) {
		// TODO Auto-generated method stub
		return accountDao.selectAccountDetails(labIp, year, month);
	}

	public Collection findAccountDetails(String labIp, int year) {
		// TODO Auto-generated method stub
		return accountDao.selectAccountDetails(labIp, year);
	}

	public Collection findAllAccounts(int year, int month) {
		// TODO Auto-generated method stub
		return accountDao.selectAllAccounts(year, month);
	}

	public Collection findAllAccounts(int year) {
		// TODO Auto-generated method stub
		return accountDao.selectAllAccounts(year);
	}

	public IAccountMgmtDAO getAccountDao() {
		return accountDao;
	}

	public void setAccountDao(IAccountMgmtDAO accountDao) {
		this.accountDao = accountDao;
	}

}

⌨️ 快捷键说明

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