?? 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 + -