📄 fundaccount.java
字号:
/*
* Created on 2006-6-22
* 持久化类
*/
package com.funddeal.model.pojo.fund_account;
/**
* @author Administrator
* 基金帐号持久化层(实体)
*/
public class FundAccount {
private String fundAccId;
private String fundAccNo;
private String financialAccNo;
private String fundNo;
private long quantity;
private float price;
public FundAccount()
{
fundAccId="";
fundAccNo="";
financialAccNo="";
fundNo="";
quantity=0;
price=0.0f;
}
/**
* @return Returns the financialAccNo.
*/
public String getFinancialAccNo() {
return financialAccNo;
}
/**
* @param financialAccNo The financialAccNo to set.
*/
public void setFinancialAccNo(String financialAccNo) {
this.financialAccNo = financialAccNo;
}
/**
* @return Returns the fundAccId.
*/
public String getFundAccId() {
return fundAccId;
}
/**
* @param fundAccId The fundAccId to set.
*/
public void setFundAccId(String fundAccId) {
this.fundAccId = fundAccId;
}
/**
* @return Returns the fundAccNo.
*/
public String getFundAccNo() {
return fundAccNo;
}
/**
* @param fundAccNo The fundAccNo to set.
*/
public void setFundAccNo(String fundAccNo) {
this.fundAccNo = fundAccNo;
}
/**
* @return Returns the fundNo.
*/
public String getFundNo() {
return fundNo;
}
/**
* @param fundNo The fundNo to set.
*/
public void setFundNo(String fundNo) {
this.fundNo = fundNo;
}
/**
* @return Returns the price.
*/
public float getPrice() {
return price;
}
/**
* @param price The price to set.
*/
public void setPrice(float price) {
this.price = price;
}
/**
* @return Returns the quantity.
*/
public long getQuantity() {
return quantity;
}
/**
* @param quantity The quantity to set.
*/
public void setQuantity(long quantity) {
this.quantity = quantity;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -