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

📄 redeemfundaccountform.java

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

import org.apache.struts.action.ActionForm;

public class RedeemFundAccountForm extends ActionForm {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	/**
	 * 基金帐号
	 */
	private String fundAccNo;
	/**
	 * 赎回基金数量
	 */
	private long quantity;
	/**
	 * 资金帐号密码
	 */
	private String password;
	
	
	public String getFundAccNo() {
		return fundAccNo;
	}
	public void setFundAccNo(String fundAccNo) {
		this.fundAccNo = fundAccNo;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public long getQuantity() {
		return quantity;
	}
	public void setQuantity(long quantity) {
		this.quantity = quantity;
	}
}

⌨️ 快捷键说明

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