filepoint.java
来自「have a look Spring+Hibernate+Struts资源共享系」· Java 代码 · 共 55 行
JAVA
55 行
package com.david.bo;
/**
* Filepoint generated by MyEclipse Persistence Tools
*/
public class Filepoint implements java.io.Serializable {
// Fields
private Integer id;
private File file;
private Integer point;
// Constructors
/** default constructor */
public Filepoint() {
}
/** full constructor */
public Filepoint(File file, Integer point) {
this.file = file;
this.point = point;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public File getFile() {
return this.file;
}
public void setFile(File file) {
this.file = file;
}
public Integer getPoint() {
return this.point;
}
public void setPoint(Integer point) {
this.point = point;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?