week.java
来自「上一上传oa系统漏掉web-inf文件夹」· Java 代码 · 共 57 行
JAVA
57 行
package com.oa.db;
/**
* Week generated by MyEclipse - Hibernate Tools
*/
public class Week implements java.io.Serializable {
// Fields
private Integer id;
private String day;
// Constructors
/** default constructor */
public Week() {
}
/** full constructor */
public Week(String day) {
this.day = day;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getDay() {
return this.day;
}
public void setDay(String day) {
this.day = day;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?