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

📄 iaccountservice.java

📁 基于struts框架的银行帐户实例
💻 JAVA
字号:
package com.tarena.bank.biz.service;
import com.tarena.bank.biz.entity.*;

public interface IAccountService{
	public void addAcct(Account acct);//创建
	public void removeAcct(String userName);//删除
	public double getBal(String userName);//查询
	public void withdraw(String userName,double amount);//取款
	public void deposite(String userName,double amount);//存款
	public void transfer(String from,String to,double amount);//转帐
}

⌨️ 快捷键说明

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