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

📄 accountbiz.java

📁 网上银行系统
💻 JAVA
字号:
package com.kettas.pbm.biz;
import com.kettas.pbm.entity.*;
import com.kettas.pbm.util.*;
import com.kettas.pbm.dao.*;
import com.kettas.pbm.dao.hibernateImpl.*;
import org.hibernate.Session;
import org.hibernate.Transaction;

public class AccountBiz {
	private AccountDao dao=new AccountDaoImpl();
	
	public void register(Account account){
		Session session=null;
		Transaction tran=null;
		try{
			session=HibernateUtil.getSession();
			tran=session.beginTransaction();
			dao.insert(account);
			tran.commit();
		}catch(Exception e){
			if(tran!=null)tran.rollback();
		}
	}
	public void deposit(Integer id,double money){
		
	}
	public void withdraw(Integer id,double money){
		
	}
	
	public void transfer(Integer aid,Integer bid,double money){
		
	}
	public double getBalance(Integer id){
		return 0;
	}
}

⌨️ 快捷键说明

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