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

📄 creditpayment.java

📁 网上购物系统,实现了一个具体的框架
💻 JAVA
字号:
/**
 * @name CreditPayment.java
 * @author Administrator/pan
 * @version 1.1
 * @date 2009/2/17
 */
package com.digitstore.process.server.sale;

public class CreditPayment extends Payment {
	//信用卡号
	private String creditCartID;
	//信用卡类型
	private String creditCartType;
	
	//构造函数
	public CreditPayment(String customerID, double amount) {
		super(customerID, amount);
	}
	//对应的get/set方法
	public String getCreditCartID(){
		return creditCartID;
	}
	
	public void setCreditCartID(String creditCartID){
		this.creditCartID = creditCartID;
	}
	
	public String getCreditCartType(){
		return creditCartType;
	}
	
	public void setCreditCartType(String creditCartType){
		this.creditCartType =  creditCartType;
	}
	

}

⌨️ 快捷键说明

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