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

📄 bsform.java

📁 基于SSH (struts+spring+hibernate)框架设计的 CRM客户关系管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.csu.crm.bs.form;

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: 10-02-2007
 * 
 * XDoclet definition:
 * @struts.form name="bsForm"
 */
public class BsForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** bsId property */
	private String bsId;

	/** commodity property */
	private String commodity;

	/** contact property */
	private String contact;

	/** price property */
	private String price;

	/** employee property */
	private String employee;

	/** description property */
	private String description;

	/** enterprise property */
	private String enterprise;

	/** logDate property */
	private String logDate;

	/** quantity property */
	private String quantity;

	/** saleQuantity property */
	private String saleQuantity;

	/*
	 * Generated Methods
	 */

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

	/** 
	 * Returns the bsId.
	 * @return String
	 */
	public String getBsId() {
		return bsId;
	}

	/** 
	 * Set the bsId.
	 * @param bsId The bsId to set
	 */
	public void setBsId(String bsId) {
		this.bsId = bsId;
	}

	/** 
	 * Returns the commodity.
	 * @return String
	 */
	public String getCommodity() {
		return commodity;
	}

	/** 
	 * Set the commodity.
	 * @param commodity The commodity to set
	 */
	public void setCommodity(String commodity) {
		this.commodity = commodity;
	}

	/** 
	 * Returns the contact.
	 * @return String
	 */
	public String getContact() {
		return contact;
	}

	/** 
	 * Set the contact.
	 * @param contact The contact to set
	 */
	public void setContact(String contact) {
		this.contact = contact;
	}

	/** 
	 * Returns the price.
	 * @return String
	 */
	public String getPrice() {
		return price;
	}

	/** 
	 * Set the price.
	 * @param price The price to set
	 */
	public void setPrice(String price) {
		this.price = price;
	}

	/** 
	 * Returns the employee.
	 * @return String
	 */
	public String getEmployee() {
		return employee;
	}

	/** 
	 * Set the employee.
	 * @param employee The employee to set
	 */
	public void setEmployee(String employee) {
		this.employee = employee;
	}

	/** 
	 * Returns the description.
	 * @return String
	 */
	public String getDescription() {
		return description;
	}

	/** 
	 * Set the description.
	 * @param description The description to set
	 */
	public void setDescription(String description) {
		this.description = description;
	}

	/** 
	 * Returns the enterprise.
	 * @return String
	 */
	public String getEnterprise() {
		return enterprise;
	}

	/** 
	 * Set the enterprise.
	 * @param enterprise The enterprise to set
	 */
	public void setEnterprise(String enterprise) {
		this.enterprise = enterprise;
	}

	/** 
	 * Returns the logDate.
	 * @return String
	 */
	public String getLogDate() {
		return logDate;
	}

	/** 
	 * Set the logDate.
	 * @param logDate The logDate to set
	 */
	public void setLogDate(String logDate) {
		this.logDate = logDate;
	}

	/** 
	 * Returns the quantity.
	 * @return String
	 */
	public String getQuantity() {
		return quantity;
	}

	/** 
	 * Set the quantity.
	 * @param quantity The quantity to set
	 */
	public void setQuantity(String quantity) {
		this.quantity = quantity;
	}

	/** 
	 * Returns the saleQuantity.
	 * @return String
	 */
	public String getSaleQuantity() {
		return saleQuantity;
	}

	/** 
	 * Set the saleQuantity.
	 * @param saleQuantity The saleQuantity to set
	 */
	public void setSaleQuantity(String saleQuantity) {
		this.saleQuantity = saleQuantity;
	}
}

⌨️ 快捷键说明

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