downtimes.java
来自「have a look Spring+Hibernate+Struts资源共享系」· Java 代码 · 共 55 行
JAVA
55 行
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;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?