creditcardinfo.java

来自「使用jsp+Servlet,采用MVC模式,实现了一典型小型电子商务网站的全过程」· Java 代码 · 共 158 行

JAVA
158
字号
/**
 * 
 */
package com.eshop.vo;

/**
 * 信用卡信息数据库映射
 * @author jonson
 *
 */
public class CreditCardInfo extends BaseVo {
	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;//收单人
	/**
	 * @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 + =
减小字号Ctrl + -
显示快捷键?