📄 fund.java
字号:
/*
* Created on 2006-6-24
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.funddeal.model.pojo.fund;
import java.util.Calendar;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class Fund {
private String fundId;
private String fundNo;
private String fundName;
private float price;
private String description;
private String status;
private Calendar createdDate;
public Fund()
{
fundId="";
fundNo="";
fundName="";
price=0.0f;
description="";
status="";
createdDate=Calendar.getInstance();
}
/**
* @return Returns the createdDate.
*/
public Calendar getCreatedDate() {
return createdDate;
}
/**
* @param createdDate The createdDate to set.
*/
public void setCreatedDate(Calendar createdDate) {
this.createdDate = createdDate;
}
/**
* @return Returns the description.
*/
public String getDescription() {
return description;
}
/**
* @param description The description to set.
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return Returns the fundId.
*/
public String getFundId() {
return fundId;
}
/**
* @param fundId The fundId to set.
*/
public void setFundId(String fundId) {
this.fundId = fundId;
}
/**
* @return Returns the fundName.
*/
public String getFundName() {
return fundName;
}
/**
* @param fundName The fundName to set.
*/
public void setFundName(String fundName) {
this.fundName = fundName;
}
/**
* @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 status.
*/
public String getStatus() {
return status;
}
/**
* @param status The status to set.
*/
public void setStatus(String status) {
this.status = status;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -