?? product.java
字號:
package com.briup.common.dao.pojo;
// default package
/**
* Product generated by MyEclipse - Hibernate Tools
*/
public class Product implements java.io.Serializable {
// Fields
private Long id;
private ProductType productType;
private String name;
private Double baseFee;
private Double rateFee;
private Long dailyLimit;
private Long monthLimit;
private Long upLimit;
private Long downLimit;
private Double sfee;
private String remark;
// Constructors
/** default constructor */
public Product() {
}
/** minimal constructor */
public Product(String name) {
this.name = name;
}
/** full constructor */
public Product(ProductType productType, String name, Double baseFee, Double rateFee, Long dailyLimit, Long monthLimit, Long upLimit, Long downLimit, Double sfee, String remark) {
this.productType = productType;
this.name = name;
this.baseFee = baseFee;
this.rateFee = rateFee;
this.dailyLimit = dailyLimit;
this.monthLimit = monthLimit;
this.upLimit = upLimit;
this.downLimit = downLimit;
this.sfee = sfee;
this.remark = remark;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public ProductType getProductType() {
return this.productType;
}
public void setProductType(ProductType productType) {
this.productType = productType;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Double getBaseFee() {
return this.baseFee;
}
public void setBaseFee(Double baseFee) {
this.baseFee = baseFee;
}
public Double getRateFee() {
return this.rateFee;
}
public void setRateFee(Double rateFee) {
this.rateFee = rateFee;
}
public Long getDailyLimit() {
return this.dailyLimit;
}
public void setDailyLimit(Long dailyLimit) {
this.dailyLimit = dailyLimit;
}
public Long getMonthLimit() {
return this.monthLimit;
}
public void setMonthLimit(Long monthLimit) {
this.monthLimit = monthLimit;
}
public Long getUpLimit() {
return this.upLimit;
}
public void setUpLimit(Long upLimit) {
this.upLimit = upLimit;
}
public Long getDownLimit() {
return this.downLimit;
}
public void setDownLimit(Long downLimit) {
this.downLimit = downLimit;
}
public Double getSfee() {
return this.sfee;
}
public void setSfee(Double sfee) {
this.sfee = sfee;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -