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

📄 waremoneybillform.java

📁 关于网上汽车销售系统的详细编程项目实战实例
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.company.struts.form.returnmoney;

import java.awt.Checkbox;
import java.sql.Date;
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: 03-27-2008
 * 
 * XDoclet definition:
 * @struts.form name="wareMoneyBillForm"
 */
public class WareMoneyBillForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** selected property */
	private Checkbox selected;

	/** billDate property */
	private Date billDate;

	/** money property */
	private Double money;

	/** rowvalue property */
	private int rowvalue;

	/** nowwaremoney property */
	private Double nowwaremoney;

	/** billCode property */
	private int billCode;

	/** notwaremoney property */
	private Double notwaremoney;

	/*
	 * 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 selected.
	 * @return Checkbox
	 */
	public Checkbox getSelected() {
		return selected;
	}

	/** 
	 * Set the selected.
	 * @param selected The selected to set
	 */
	public void setSelected(Checkbox selected) {
		this.selected = selected;
	}

	/** 
	 * Returns the billDate.
	 * @return Date
	 */
	public Date getBillDate() {
		return billDate;
	}

	/** 
	 * Set the billDate.
	 * @param billDate The billDate to set
	 */
	public void setBillDate(Date billDate) {
		this.billDate = billDate;
	}

	/** 
	 * Returns the money.
	 * @return Double
	 */
	public Double getMoney() {
		return money;
	}

	/** 
	 * Set the money.
	 * @param money The money to set
	 */
	public void setMoney(Double money) {
		this.money = money;
	}

	/** 
	 * Returns the rowvalue.
	 * @return int
	 */
	public int getRowvalue() {
		return rowvalue;
	}

	/** 
	 * Set the rowvalue.
	 * @param rowvalue The rowvalue to set
	 */
	public void setRowvalue(int rowvalue) {
		this.rowvalue = rowvalue;
	}

	/** 
	 * Returns the nowwaremoney.
	 * @return Double
	 */
	public Double getNowwaremoney() {
		return nowwaremoney;
	}

	/** 
	 * Set the nowwaremoney.
	 * @param nowwaremoney The nowwaremoney to set
	 */
	public void setNowwaremoney(Double nowwaremoney) {
		this.nowwaremoney = nowwaremoney;
	}

	/** 
	 * Returns the billCode.
	 * @return int
	 */
	public int getBillCode() {
		return billCode;
	}

	/** 
	 * Set the billCode.
	 * @param billCode The billCode to set
	 */
	public void setBillCode(int billCode) {
		this.billCode = billCode;
	}

	/** 
	 * Returns the notwaremoney.
	 * @return Double
	 */
	public Double getNotwaremoney() {
		return notwaremoney;
	}

	/** 
	 * Set the notwaremoney.
	 * @param notwaremoney The notwaremoney to set
	 */
	public void setNotwaremoney(Double notwaremoney) {
		this.notwaremoney = notwaremoney;
	}
}

⌨️ 快捷键说明

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