-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDept.java
More file actions
48 lines (34 loc) · 775 Bytes
/
Dept.java
File metadata and controls
48 lines (34 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package dept;
// 부서 정보를 저장하는 기능 클래스
public class Dept {
private int deptno; // 부서번호
private String dname; // 부서이름
private String loc; // 부서위치
public Dept(int deptno, String dname, String loc) {
this.deptno = deptno;
this.dname = dname;
this.loc = loc;
}
public int getDeptno() {
return deptno;
}
public void setDeptno(int deptno) {
this.deptno = deptno;
}
public String getDname() {
return dname;
}
public void setDname(String dname) {
this.dname = dname;
}
public String getLoc() {
return loc;
}
public void setLoc(String loc) {
this.loc = loc;
}
@Override
public String toString() {
return "Dept [deptno=" + deptno + ", dname=" + dname + ", loc=" + loc + "]";
}
}