📄 extractionfinancialform.java
字号:
/*
* Created on 2006-6-25
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.funddeal.view.actionform.financial_account;
import org.apache.struts.action.ActionForm;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class ExtractionFinancialForm extends ActionForm {
/**
*
*/
private static final long serialVersionUID = 1L;
private String finaAccount;
private float finaAmount;
private String passWord;
public ExtractionFinancialForm()
{
this.finaAccount="";
this.finaAmount=0.0f;
this.passWord="";
}
/**
* @return Returns the finaAccount.
*/
public String getFinaAccount() {
return finaAccount;
}
/**
* @param finaAccount The finaAccount to set.
*/
public void setFinaAccount(String finaAccount) {
this.finaAccount = finaAccount;
}
/**
* @return Returns the finaAmount.
*/
public float getFinaAmount() {
return finaAmount;
}
/**
* @param finaAmount The finaAmount to set.
*/
public void setFinaAmount(float finaAmount) {
this.finaAmount = finaAmount;
}
/**
* @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 + -