📄 xuser.java
字号:
package com.my.hibernate;
/**
* XUser entity.
*
* @author MyEclipse Persistence Tools
*/
public class XUser implements java.io.Serializable {
// Fields
private Integer XId;
private Float XMoney;
private String XTime;
private Integer UId;
// Constructors
/** default constructor */
public XUser() {
}
/** full constructor */
public XUser(Float XMoney, String XTime, Integer UId) {
this.XMoney = XMoney;
this.XTime = XTime;
this.UId = UId;
}
// Property accessors
public Integer getXId() {
return this.XId;
}
public void setXId(Integer XId) {
this.XId = XId;
}
public Float getXMoney() {
return this.XMoney;
}
public void setXMoney(Float XMoney) {
this.XMoney = XMoney;
}
public String getXTime() {
return this.XTime;
}
public void setXTime(String XTime) {
this.XTime = XTime;
}
public Integer getUId() {
return this.UId;
}
public void setUId(Integer UId) {
this.UId = UId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -