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

📄 creditcardform.java

📁 使用jsp+Servlet,采用MVC模式,实现了一典型小型电子商务网站的全过程.包括前台和后台的全部功能.适合于初学者学习使用.
💻 JAVA
字号:
/**
 * 
 */
package com.eshop.form;

/**
 * @author jonson
 *
 */
public class CreditCardForm {
	private long id;//编号,主键
	private String creditcard;//信用卡卡号
	private String exprdate;//有效期
	private String cardtype;//信用卡类型
	private String billaddr1;//帐单地址1
	private String billaddr2;// 帐单地址2
	private String billcity;//城市
	private String billstate;//省,洲
	private String billzip;//邮政编码
	private String billcountry;//国家或地区
	private String billtoname;//收单人
	private String paytype;//付款类型
	/**
	 * @return the paytype
	 */
	public String getPaytype() {
		return paytype;
	}
	/**
	 * @param paytype the paytype to set
	 */
	public void setPaytype(String paytype) {
		this.paytype = paytype;
	}
	/**
	 * @return the billaddr1
	 */
	public String getBilladdr1() {
		return billaddr1;
	}
	/**
	 * @param billaddr1 the billaddr1 to set
	 */
	public void setBilladdr1(String billaddr1) {
		this.billaddr1 = billaddr1;
	}
	/**
	 * @return the billaddr2
	 */
	public String getBilladdr2() {
		return billaddr2;
	}
	/**
	 * @param billaddr2 the billaddr2 to set
	 */
	public void setBilladdr2(String billaddr2) {
		this.billaddr2 = billaddr2;
	}
	/**
	 * @return the billcity
	 */
	public String getBillcity() {
		return billcity;
	}
	/**
	 * @param billcity the billcity to set
	 */
	public void setBillcity(String billcity) {
		this.billcity = billcity;
	}
	/**
	 * @return the billcountry
	 */
	public String getBillcountry() {
		return billcountry;
	}
	/**
	 * @param billcountry the billcountry to set
	 */
	public void setBillcountry(String billcountry) {
		this.billcountry = billcountry;
	}
	/**
	 * @return the billstate
	 */
	public String getBillstate() {
		return billstate;
	}
	/**
	 * @param billstate the billstate to set
	 */
	public void setBillstate(String billstate) {
		this.billstate = billstate;
	}
	/**
	 * @return the billtoname
	 */
	public String getBilltoname() {
		return billtoname;
	}
	/**
	 * @param billtoname the billtoname to set
	 */
	public void setBilltoname(String billtoname) {
		this.billtoname = billtoname;
	}
	/**
	 * @return the billzip
	 */
	public String getBillzip() {
		return billzip;
	}
	/**
	 * @param billzip the billzip to set
	 */
	public void setBillzip(String billzip) {
		this.billzip = billzip;
	}
	/**
	 * @return the cardtype
	 */
	public String getCardtype() {
		return cardtype;
	}
	/**
	 * @param cardtype the cardtype to set
	 */
	public void setCardtype(String cardtype) {
		this.cardtype = cardtype;
	}
	/**
	 * @return the creditcard
	 */
	public String getCreditcard() {
		return creditcard;
	}
	/**
	 * @param creditcard the creditcard to set
	 */
	public void setCreditcard(String creditcard) {
		this.creditcard = creditcard;
	}
	/**
	 * @return the exprdate
	 */
	public String getExprdate() {
		return exprdate;
	}
	/**
	 * @param exprdate the exprdate to set
	 */
	public void setExprdate(String exprdate) {
		this.exprdate = exprdate;
	}
	/**
	 * @return the id
	 */
	public long getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(long id) {
		this.id = id;
	}

}

⌨️ 快捷键说明

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