1
2
3
4
5
6
7 package org.huihoo.jfox.soaf.services.persistence;
8
9 import java.util.Date;
10
11 /***
12 * @author peter.cheng
13 *
14 * TODO To change the template for this generated type comment go to Window -
15 * Preferences - Java - Code Style - Code Templates
16 */
17 public class Employee {
18
19 private String employeeId = null;
20
21 private String name = null;
22
23 private String jobDescription = null;
24
25 private String jobTitle = null;
26
27 private Date employedSince = null;
28
29 private int monthlySalary = 0;
30
31 /***
32 * @return Returns the employedSince.
33 */
34 public Date getEmployedSince() {
35 return employedSince;
36 }
37
38 /***
39 * @param employedSince
40 * The employedSince to set.
41 */
42 public void setEmployedSince(Date employedSince) {
43 this.employedSince = employedSince;
44 }
45
46 /***
47 * @return Returns the employeeId.
48 */
49 public String getEmployeeId() {
50 return employeeId;
51 }
52
53 /***
54 * @param employeeId
55 * The employeeId to set.
56 */
57 public void setEmployeeId(String employeeId) {
58 this.employeeId = employeeId;
59 }
60
61 /***
62 * @return Returns the jobDescription.
63 */
64 public String getJobDescription() {
65 return jobDescription;
66 }
67
68 /***
69 * @param jobDescription
70 * The jobDescription to set.
71 */
72 public void setJobDescription(String jobDescription) {
73 this.jobDescription = jobDescription;
74 }
75
76 /***
77 * @return Returns the jobTitle.
78 */
79 public String getJobTitle() {
80 return jobTitle;
81 }
82
83 /***
84 * @param jobTitle
85 * The jobTitle to set.
86 */
87 public void setJobTitle(String jobTitle) {
88 this.jobTitle = jobTitle;
89 }
90
91 /***
92 * @return Returns the monthlySalary.
93 */
94 public int getMonthlySalary() {
95 return monthlySalary;
96 }
97
98 /***
99 * @param monthlySalary
100 * The monthlySalary to set.
101 */
102 public void setMonthlySalary(int monthlySalary) {
103 this.monthlySalary = monthlySalary;
104 }
105
106 /***
107 * @return Returns the name.
108 */
109 public String getName() {
110 return name;
111 }
112
113 /***
114 * @param name
115 * The name to set.
116 */
117 public void setName(String name) {
118 this.name = name;
119 }
120 }