📄 rankinfo.java
字号:
package cn.zqnet8.rank.entity;
import java.util.Date;
/**
* RankInfo entity.
*
* @author MyEclipse Persistence Tools
*/
public class RankInfo implements java.io.Serializable {
// Fields
private Integer riId;
private RankLevel rankLevel;
private RankMonth rankMonth;
private String custNo;
private Integer isReceived;
private Date receiveDate;
private Integer costMoney;
// Constructors
/** default constructor */
public RankInfo() {
}
/** minimal constructor */
public RankInfo(String custNo) {
this.custNo = custNo;
}
/** full constructor */
public RankInfo(RankLevel rankLevel, RankMonth rankMonth, String custNo,
Integer isReceived, Date receiveDate, Integer costMoney) {
this.rankLevel = rankLevel;
this.rankMonth = rankMonth;
this.custNo = custNo;
this.isReceived = isReceived;
this.receiveDate = receiveDate;
this.costMoney = costMoney;
}
// Property accessors
public Integer getRiId() {
return this.riId;
}
public void setRiId(Integer riId) {
this.riId = riId;
}
public RankLevel getRankLevel() {
return this.rankLevel;
}
public void setRankLevel(RankLevel rankLevel) {
this.rankLevel = rankLevel;
}
public RankMonth getRankMonth() {
return this.rankMonth;
}
public void setRankMonth(RankMonth rankMonth) {
this.rankMonth = rankMonth;
}
public String getCustNo() {
return this.custNo;
}
public void setCustNo(String custNo) {
this.custNo = custNo;
}
public Integer getIsReceived() {
return this.isReceived;
}
public void setIsReceived(Integer isReceived) {
this.isReceived = isReceived;
}
public Date getReceiveDate() {
return this.receiveDate;
}
public void setReceiveDate(Date receiveDate) {
this.receiveDate = receiveDate;
}
public Integer getCostMoney() {
return this.costMoney;
}
public void setCostMoney(Integer costMoney) {
this.costMoney = costMoney;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -