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

📄 intergralruleform.java

📁 自己制作的联通CRM,支持客户分类,管理,升级,积分管理等等..
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.jn0801.intergral.rule;

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: 08-20-2008
 * 
 * XDoclet definition:
 * 
 * @struts.form name="intergralRuleForm"
 */
public class IntergralRuleForm extends ActionForm {

	private static final long serialVersionUID = 4849743487282485446L;

	private String task;

	private Long ruleid;

	private String location;

	private String servertype;

	private String minintergral;

	private String rate;

	/**
	 * 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
	}

	/**
	 * @return the location
	 */
	public String getLocation() {
		return location;
	}

	/**
	 * @param location
	 *            the location to set
	 */
	public void setLocation(String location) {
		this.location = location;
	}

	/**
	 * @return the minintergral
	 */
	public String getMinintergral() {
		return minintergral;
	}

	/**
	 * @param minintergral
	 *            the minintergral to set
	 */
	public void setMinintergral(String minintergral) {
		this.minintergral = minintergral;
	}

	/**
	 * @return the rate
	 */
	public String getRate() {
		return rate;
	}

	/**
	 * @param rate
	 *            the rate to set
	 */
	public void setRate(String rate) {
		this.rate = rate;
	}

	/**
	 * @return the ruleid
	 */
	public Long getRuleid() {
		return ruleid;
	}

	/**
	 * @param ruleid
	 *            the ruleid to set
	 */
	public void setRuleid(Long ruleid) {
		this.ruleid = ruleid;
	}

	/**
	 * @return the servertype
	 */
	public String getServertype() {
		return servertype;
	}

	/**
	 * @param servertype
	 *            the servertype to set
	 */
	public void setServertype(String servertype) {
		this.servertype = servertype;
	}

	/**
	 * @return the task
	 */
	public String getTask() {
		return task;
	}

	/**
	 * @param task
	 *            the task to set
	 */
	public void setTask(String task) {
		this.task = task;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -