test.java
来自「文本文档中的报表数据转换为数据库中的记录」· Java 代码 · 共 59 行
JAVA
59 行
package POJO;
/**
* Test entity.
*
* @author MyEclipse Persistence Tools
*/
public class Test implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = 8208016763649019790L;
private Integer id;
private String name;
private Integer age;
// Constructors
/** default constructor */
public Test() {
}
/** full constructor */
public Test(String name, Integer age) {
this.name = name;
this.age = age;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge() {
return this.age;
}
public void setAge(Integer age) {
this.age = age;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?