-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmpDTO.java
More file actions
47 lines (34 loc) · 725 Bytes
/
Copy pathEmpDTO.java
File metadata and controls
47 lines (34 loc) · 725 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
package java0929_jdbc;
import java.util.Date;
public class EmpDTO {
private int employee_id;
private String first_name;
private int salary;
private Date hire_date;
public EmpDTO() {
}
public int getEmployee_id() {
return employee_id;
}
public void setEmployee_id(int employee_id) {
this.employee_id = employee_id;
}
public String getFirst_name() {
return first_name;
}
public void setFirst_name(String first_name) {
this.first_name = first_name;
}
public int getSalary() {
return salary;
}
public void setSalary(int salary) {
this.salary = salary;
}
public Date getHire_date() {
return hire_date;
}
public void setHire_date(Date hire_date) {
this.hire_date = hire_date;
}
}