-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExcelList.java
More file actions
74 lines (65 loc) · 1.5 KB
/
ExcelList.java
File metadata and controls
74 lines (65 loc) · 1.5 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//************************************ DO NOT CHANGE ************************************
package com.employee;
public class ExcelList {
private int empId;
private String name;
private int age;
private String contact;
private int compensation;
private int rating;
private String extraField;
public ExcelList(int empId, String name, int age, String contact, int compensation,int rating,String extraField) {
this.empId = empId;
this.name = name;
this.age = age;
this.contact = contact;
this.compensation = compensation;
this.rating=rating;
this.extraField=extraField;
}
public ExcelList() {
}
public int getEmpId() {
return empId;
}
public void setEmpId(int empId) {
this.empId = empId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getContact() {
return contact;
}
public void setContact(String contact) {
this.contact = contact;
}
public int getCompensation() {
return compensation;
}
public void setCompensation(int compensation) {
this.compensation = compensation;
}
public int getRating() {
return rating;
}
public void setRating(int rating) {
this.rating = rating;
}
public String getExtraField() {
return extraField;
}
public void setExtraField(String extraField) {
this.extraField = extraField;
}
}
//************************************ DO NOT CHANGE ************************************