⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 updateproductform.java

📁 该程序能够准确的记录互联网用户上网所用的流量
💻 JAVA
字号:
package com.briup.admin.web.form;import org.apache.struts.action.ActionForm;/** *class UpdateProductForm *@author briup *Date 2008-2-27 下午08:28:19 */public class UpdateProductForm 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 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 + -