📄 record.java
字号:
package jp.com.cost.pojo;
/**
* Record generated by MyEclipse Persistence Tools
*/
public class Record implements java.io.Serializable {
// Fields
/**
* 序列化ID = 5289269247151306590L
*/
private static final long serialVersionUID = 5289269247151306590L;
private Integer id;
private String etable;
private String etype;
private String otime;
// Constructors
/** default constructor */
public Record() {
}
/** minimal constructor */
public Record(Integer id) {
this.id = id;
}
/** full constructor */
public Record(Integer id, String etable, String etype, String otime) {
this.id = id;
this.etable = etable;
this.etype = etype;
this.otime = otime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getEtable() {
return this.etable;
}
public void setEtable(String etable) {
this.etable = etable;
}
public String getEtype() {
return this.etype;
}
public void setEtype(String etype) {
this.etype = etype;
}
public String getOtime() {
return this.otime;
}
public void setOtime(String otime) {
this.otime = otime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -