?? downtimes.java
字號:
package com.david.bo;
/**
* Downtimes generated by MyEclipse Persistence Tools
*/
public class Downtimes implements java.io.Serializable {
// Fields
private Integer id;
private File file;
private Integer times;
// Constructors
/** default constructor */
public Downtimes() {
}
/** full constructor */
public Downtimes(File file, Integer times) {
this.file = file;
this.times = times;
}
// 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 getTimes() {
return this.times;
}
public void setTimes(Integer times) {
this.times = times;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -