📄 filepoint.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -