📄 financialaccountform.java
字号:
package com.fund.client;
import org.apache.struts.validator.ValidatorActionForm;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionMapping;
/**
*
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class FinancialAccountForm extends ValidatorActionForm {
/**
* serialVersionUID
*/
private static final long serialVersionUID = 1L;
/**
*financialAccount detail
*/
private FinancialAccountDto financialAccountDto
= new FinancialAccountDto();
/**
*clientDto
*/
private ClientDto clientDto = new ClientDto();
/**
* cpassword
*/
private String cpassword = "";
/**
*
* @param clientDto ClientDto
*/
public void setClientDto(ClientDto clientDto) {
this.clientDto = clientDto;
}
/**
*
* @return ClientDto
*/
public ClientDto getClientDto() {
return this.clientDto;
}
/**
*
* @param financialAccountDto FinancialAccountDto
*/
public void setFinancialAccountDto(
FinancialAccountDto financialAccountDto) {
this.financialAccountDto = financialAccountDto;
}
/**
*
* @return FinancialAccountDto
*/
public FinancialAccountDto getFinancialAccountDto() {
return this.financialAccountDto;
}
/**
*
* @param cpassword String
*/
public void setCpassword(String cpassword) {
this.cpassword = cpassword;
}
/**
*
* @return String
*/
public String getCpassword() {
return this.cpassword;
}
/**
*
* @param mapping ActionMapping
* @param request HttpServletRequest
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
financialAccountDto = new FinancialAccountDto();
clientDto = new ClientDto();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -