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

📄 addfundaccountform.java

📁 这是本人以前在学校时
💻 JAVA
字号:
package com.funddeal.view.actionform.fund_account;

import org.apache.struts.action.ActionForm;

public class AddFundAccountForm extends ActionForm {

	private static final long serialVersionUID = 1L;
	/**
	 * 上市基金
	 */
	private String fundNo;
	/**
	 * 基金当前价格
	 */
	private float price;
	/**
	 * 购买数量
	 */
	private long quantity;
	/**
	 * 资金帐户
	 */
	private String accountNo;
	/**
	 * 资金帐户密码
	 */
	private String password;
	
	
	public AddFundAccountForm(){
		this.fundNo="";
		this.price=0.0f;
		this.quantity=0;
		this.accountNo="";
		this.password="";
		
	}
	public String getAccountNo() {
		return accountNo;
	}
	public void setAccountNo(String accountNo) {
		this.accountNo = accountNo;
	}

	public String getFundNo() {
		return fundNo;
	}
	public void setFundNo(String fundNo) {
		this.fundNo = fundNo;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public float getPrice() {
		return price;
	}
	public void setPrice(float price) {
		this.price = price;
	}
	public long getQuantity() {
		return quantity;
	}
	public void setQuantity(long quantity) {
		this.quantity = quantity;
	}

}

⌨️ 快捷键说明

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