1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.hr.time.workschedule;
17
18 import java.sql.Date;
19 import java.sql.Timestamp;
20 import java.util.LinkedHashMap;
21
22 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
23
24
25
26 public class WorkScheduleAssignment extends PersistableBusinessObjectBase {
27
28
29
30 private static final long serialVersionUID = 1L;
31 private Long hrWorkScheduleAssignmentId;
32 private Long hrWorkSchedule;
33 private String dept;
34 private Long workArea;
35 private String principalId;
36 private Date effectiveDate;
37 private Boolean active;
38 private Timestamp timestamp;
39 private String userPrincipalId;
40
41 public Long getHrWorkScheduleAssignmentId() {
42 return hrWorkScheduleAssignmentId;
43 }
44
45
46 public void setHrWorkScheduleAssignmentId(Long hrWorkScheduleAssignmentId) {
47 this.hrWorkScheduleAssignmentId = hrWorkScheduleAssignmentId;
48 }
49
50
51 public Long getHrWorkSchedule() {
52 return hrWorkSchedule;
53 }
54
55
56 public void setHrWorkSchedule(Long hrWorkSchedule) {
57 this.hrWorkSchedule = hrWorkSchedule;
58 }
59
60
61 public String getDept() {
62 return dept;
63 }
64
65
66 public void setDept(String dept) {
67 this.dept = dept;
68 }
69
70
71 public Long getWorkArea() {
72 return workArea;
73 }
74
75
76 public void setWorkArea(Long workArea) {
77 this.workArea = workArea;
78 }
79
80
81 public String getPrincipalId() {
82 return principalId;
83 }
84
85
86 public void setPrincipalId(String principalId) {
87 this.principalId = principalId;
88 }
89
90 public Boolean getActive() {
91 return active;
92 }
93
94
95 public void setActive(Boolean active) {
96 this.active = active;
97 }
98
99
100 public Timestamp getTimestamp() {
101 return timestamp;
102 }
103
104
105 public void setTimestamp(Timestamp timestamp) {
106 this.timestamp = timestamp;
107 }
108
109
110 public String getUserPrincipalId() {
111 return userPrincipalId;
112 }
113
114
115 public void setUserPrincipalId(String userPrincipalId) {
116 this.userPrincipalId = userPrincipalId;
117 }
118
119
120 public void setEffectiveDate(Date effectiveDate) {
121 this.effectiveDate = effectiveDate;
122 }
123
124
125 public Date getEffectiveDate() {
126 return effectiveDate;
127 }
128
129 }