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

📄 intergralconsumeform.java

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

import java.util.Map;

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-25-2008
 * 
 * XDoclet definition:
 * 
 * @struts.form name="intergralConsumeForm"
 */
public class IntergralConsumeForm extends ActionForm {

	private static final long serialVersionUID = -7709370432368179898L;

	private String keyword;

	private Long typeid;

	private String task;

	private String phone;

	private Long totalIntergral;

	private int productnum;

	private Long productid;

	private Long point;

	private Map product;

	/**
	 * 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 keyword
	 */
	public String getKeyword() {
		return keyword;
	}

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

	/**
	 * @return the phone
	 */
	public String getPhone() {
		return phone;
	}

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

	/**
	 * @return the point
	 */
	public Long getPoint() {
		return point;
	}

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

	/**
	 * @return the product
	 */
	public Map getProduct() {
		return product;
	}

	/**
	 * @param product
	 *            the product to set
	 */
	public void setProduct(Map product) {
		this.product = product;
	}

	/**
	 * @return the productid
	 */
	public Long getProductid() {
		return productid;
	}

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

	/**
	 * @return the productnum
	 */
	public int getProductnum() {
		return productnum;
	}

	/**
	 * @param productnum
	 *            the productnum to set
	 */
	public void setProductnum(int productnum) {
		this.productnum = productnum;
	}

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

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

	/**
	 * @return the totalIntergral
	 */
	public Long getTotalIntergral() {
		return totalIntergral;
	}

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

	/**
	 * @return the typeid
	 */
	public Long getTypeid() {
		return typeid;
	}

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

}

⌨️ 快捷键说明

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