📄 phoneinfo.java
字号:
package com.jn0801.phonefeeinfo;
/**
* 费用表持久类
* phoneinfo generated by MyEclipse - Hibernate Tools
*/
public class phoneinfo implements java.io.Serializable {
// Fields
private Long phonefeeinfoid;
private Long userid;
private String mdate;
private Long money;
private Long prepay;
// Constructors
/** default constructor */
public phoneinfo() {
}
/** minimal constructor */
public phoneinfo(Long userid) {
this.userid = userid;
}
/** full constructor */
public phoneinfo(Long userid, String mdate, Long money, Long prepay) {
this.userid = userid;
this.mdate = mdate;
this.money = money;
this.prepay = prepay;
}
// Property accessors
public Long getPhonefeeinfoid() {
return this.phonefeeinfoid;
}
public void setPhonefeeinfoid(Long phonefeeinfoid) {
this.phonefeeinfoid = phonefeeinfoid;
}
public Long getUserid() {
return this.userid;
}
public void setUserid(Long userid) {
this.userid = userid;
}
public String getMdate() {
return this.mdate;
}
public void setMdate(String mdate) {
this.mdate = mdate;
}
public Long getMoney() {
return this.money;
}
public void setMoney(Long money) {
this.money = money;
}
public Long getPrepay() {
return this.prepay;
}
public void setPrepay(Long prepay) {
this.prepay = prepay;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -