📄 addproductform.java
字号:
package com.briup.admin.web.form;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/** *class AddProductForm *@author briup *Date 2008-2-23 下午03:57:02 */public class AddProductForm extends ActionForm { private String productName; private String productType; private Double baseFee; private Double rateFee; private Long dailyLimit; private Long monthLimit; private Long upLimit; private Long downLimit; private Double sfee; private String remark; 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 Double getBaseFee() { return baseFee; } public void setBaseFee(Double baseFee) { this.baseFee = baseFee; } public Long getDailyLimit() { return dailyLimit; } public void setDailyLimit(Long dailyLimit) { this.dailyLimit = dailyLimit; } public Long getDownLimit() { return downLimit; } public void setDownLimit(Long downLimit) { this.downLimit = downLimit; } public Long getMonthLimit() { return monthLimit; } public void setMonthLimit(Long monthLimit) { this.monthLimit = monthLimit; } public String getProductName() { return productName; } public void setProductName(String productName) { this.productName = productName; } public String getProductType() { return productType; } public void setProductType(String productType) { this.productType = productType; } public Double getRateFee() { return rateFee; } public void setRateFee(Double rateFee) { this.rateFee = rateFee; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public Double getSfee() { return sfee; } public void setSfee(Double sfee) { this.sfee = sfee; } public Long getUpLimit() { return upLimit; } public void setUpLimit(Long upLimit) { this.upLimit = upLimit; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -