📄 openfinancialaccountform.java
字号:
/*
* Created on 2006-10-21
* OK
*/
package com.funddeal.view.actionform.financial_account;
import org.apache.struts.action.ActionForm;
/**
* @author Administrator
* 资金帐号管理模块的ActionForm
*/
public class OpenFinancialAccountForm extends ActionForm {
/**
*
*/
private static final long serialVersionUID = 1L;
private String clientNo; //客户编号
private float financingAmount; //资金数额
private String passWord; //账户密码
public OpenFinancialAccountForm()
{
this.clientNo="";
this.financingAmount=0.0f;
this.passWord="";
}
/**
* @return Returns the clientNo.
*/
public String getClientNo() {
return clientNo;
}
/**
* @param clientNo The clientNo to set.
*/
public void setClientNo(String clientNo) {
this.clientNo = clientNo;
}
/**
* @return Returns the financingAmount.
*/
public float getFinancingAmount() {
return financingAmount;
}
/**
* @param financingAmount The financingAmount to set.
*/
public void setFinancingAmount(float financingAmount) {
this.financingAmount = financingAmount;
}
/**
* @return Returns the passWord.
*/
public String getPassWord() {
return passWord;
}
/**
* @param passWord The passWord to set.
*/
public void setPassWord(String passWord) {
this.passWord = passWord;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -