record.java
来自「一个完整的物流系统」· Java 代码 · 共 73 行
JAVA
73 行
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 + =
减小字号Ctrl + -
显示快捷键?