📄 cuser.java
字号:
package com.my.hibernate;
/**
* CUser entity.
*
* @author MyEclipse Persistence Tools
*/
public class CUser implements java.io.Serializable {
// Fields
private Integer cid;
private String CType;
private Float CMoney;
private String CDate;
private Integer UId;
// Constructors
/** default constructor */
public CUser() {
}
/** full constructor */
public CUser(String CType, Float CMoney, String CDate, Integer UId) {
this.CType = CType;
this.CMoney = CMoney;
this.CDate = CDate;
this.UId = UId;
}
// Property accessors
public Integer getCid() {
return this.cid;
}
public void setCid(Integer cid) {
this.cid = cid;
}
public String getCType() {
return this.CType;
}
public void setCType(String CType) {
this.CType = CType;
}
public Float getCMoney() {
return this.CMoney;
}
public void setCMoney(Float CMoney) {
this.CMoney = CMoney;
}
public String getCDate() {
return this.CDate;
}
public void setCDate(String CDate) {
this.CDate = CDate;
}
public Integer getUId() {
return this.UId;
}
public void setUId(Integer UId) {
this.UId = UId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -