fundsform.java
来自「一个抓取程序」· Java 代码 · 共 92 行
JAVA
92 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.phpcoo.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
* MyEclipse Struts
* Creation date: 03-31-2008
*
* XDoclet definition:
* @struts.form name="fundsForm"
*/
public class FundsForm extends ActionForm {
/*
* Generated Methods
*/
private String id; /** id*/
private String fundName; /** 基金名称*/
private String netWorth; /** 净值*/
private String grandTotal; /** 累计*/
private String increase; /** 涨跌*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
public String getFundName() {
return fundName;
}
public void setFundName(String fundName) {
this.fundName = fundName;
}
public String getGrandTotal() {
return grandTotal;
}
public void setGrandTotal(String grandTotal) {
this.grandTotal = grandTotal;
}
public String getIncrease() {
return increase;
}
public void setIncrease(String increase) {
this.increase = increase;
}
public String getNetWorth() {
return netWorth;
}
public void setNetWorth(String netWorth) {
this.netWorth = netWorth;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?