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

📄 paymentform.java

📁 这个是完整的wap项目的源码 开发语言 Java 系统架构 Struts + hibernate + spring 数据库 Mysql5.0 应用服务器Tomcat5.0 开发工具 MyEc
💻 JAVA
字号:
package com.longtime.wap.module.cost.web.form;

import java.sql.Timestamp;

import org.apache.struts.validator.ValidatorForm;

/**
 * 消费记录表单
 * 
 * @author chenxq
 * @date 2007-11-26
 */
public class PaymentForm extends ValidatorForm {

	private static final long serialVersionUID = 1L;

	private String username;

	private String cpName;

	private Timestamp purchaseDate;

	private Double cost;

	private String currentPage;

	/**
	 * @return 返回 cost。
	 */
	public Double getCost() {
		return cost;
	}

	/**
	 * @param cost
	 *            要设置的 cost。
	 */
	public void setCost(Double cost) {
		this.cost = cost;
	}

	/**
	 * @return 返回 cpName。
	 */
	public String getCpName() {
		return cpName;
	}

	/**
	 * @param cpName
	 *            要设置的 cpName。
	 */
	public void setCpName(String cpName) {
		this.cpName = cpName;
	}

	/**
	 * @return 返回 purchaseDate。
	 */
	public Timestamp getPurchaseDate() {
		return purchaseDate;
	}

	/**
	 * @param purchaseDate
	 *            要设置的 purchaseDate。
	 */
	public void setPurchaseDate(Timestamp purchaseDate) {
		this.purchaseDate = purchaseDate;
	}

	/**
	 * @return 返回 username。
	 */
	public String getUsername() {
		return username;
	}

	/**
	 * @param username
	 *            要设置的 username。
	 */
	public void setUsername(String username) {
		this.username = username;
	}

	/**
	 * @return 返回 currentPage。
	 */
	public String getCurrentPage() {
		return currentPage;
	}

	/**
	 * @param currentPage
	 *            要设置的 currentPage。
	 */
	public void setCurrentPage(String currentPage) {
		this.currentPage = currentPage;
	}

}

⌨️ 快捷键说明

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