?? dept.java
字號:
package com.accp.entity;
import java.util.HashSet;
import java.util.Set;
/**
* Dept entity.
*
* @author MyEclipse Persistence Tools
*/
public class Dept implements java.io.Serializable {
// Fields
private Long deptno;
private String dname;
private String loc;
// Constructors
/** default constructor */
public Dept() {
}
/** minimal constructor */
public Dept(Long deptno) {
this.deptno = deptno;
}
// Property accessors
public Long getDeptno() {
return this.deptno;
}
public void setDeptno(Long deptno) {
this.deptno = deptno;
}
public String getDname() {
return this.dname;
}
public void setDname(String dname) {
this.dname = dname;
}
public String getLoc() {
return this.loc;
}
public void setLoc(String loc) {
this.loc = loc;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -