addfundaccountform.java

来自「这是本人以前在学校时」· Java 代码 · 共 71 行

JAVA
71
字号
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 + =
减小字号Ctrl + -
显示快捷键?