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

📄 quote.java

📁 基于eclipse环境下开发的Synapse例程
💻 JAVA
字号:
package sample.data;

public class Quote {

	double rate;
	double firstPaidRatio;
	String bankName;
	
	public String getBankName() {
		return bankName;
	}
	public void setBankName(String bankName) {
		this.bankName = bankName;
	}
	public double getFirstPaidRatio() {
		return firstPaidRatio;
	}
	public void setFirstPaidRatio(double firstPaidRatio) {
		this.firstPaidRatio = firstPaidRatio;
	}
	public double getRate() {
		return rate;
	}
	public void setRate(double rate) {
		this.rate = rate;
	}


}

⌨️ 快捷键说明

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