exemodifygatheringactionform.java
来自「完整的合同管理信息系统」· Java 代码 · 共 54 行
JAVA
54 行
package com.ICT.AFC.contractmoney.gathering;
import org.apache.struts.action.*;
import javax.servlet.http.*;
import org.apache.struts.upload.*;
public class exeModifyGatheringActionForm extends ActionForm
{
private FormFile gatheringFile;
private String gatheringMoney;
private String gatheringRemark;
private String gatheringDate;
public FormFile getGatheringFile()
{
return gatheringFile;
}
public void setGatheringFile(FormFile gatheringFile)
{
this.gatheringFile = gatheringFile;
}
public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest)
{
/**@todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest)
{
}
public String getGatheringMoney()
{
return gatheringMoney;
}
public void setGatheringMoney(String gatheringMoney)
{
this.gatheringMoney = gatheringMoney;
}
public String getGatheringRemark()
{
return gatheringRemark;
}
public void setGatheringRemark(String gatheringRemark)
{
this.gatheringRemark = gatheringRemark;
}
public String getGatheringDate()
{
return gatheringDate;
}
public void setGatheringDate(String gatheringDate)
{
this.gatheringDate = gatheringDate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?