1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.kuali.coeus.s2sgen.impl.budget;
20
21 import org.kuali.coeus.sys.api.model.ScaleTwoDecimal;
22
23
24 public class CompensationDto {
25
26 private ScaleTwoDecimal calendarMonths = ScaleTwoDecimal.ZERO;
27 private ScaleTwoDecimal academicMonths = ScaleTwoDecimal.ZERO;
28 private ScaleTwoDecimal summerMonths = ScaleTwoDecimal.ZERO;
29 private ScaleTwoDecimal requestedSalary = ScaleTwoDecimal.ZERO;
30 private ScaleTwoDecimal fringe = ScaleTwoDecimal.ZERO;
31 private ScaleTwoDecimal fundsRequested = ScaleTwoDecimal.ZERO;
32 private ScaleTwoDecimal baseSalary = ScaleTwoDecimal.ZERO;
33 private ScaleTwoDecimal costSharingAmount = ScaleTwoDecimal.ZERO;
34 private ScaleTwoDecimal fringeCostSharing = ScaleTwoDecimal.ZERO;
35 private ScaleTwoDecimal nonFundsRequested = ScaleTwoDecimal.ZERO;
36
37
38
39
40
41
42 public ScaleTwoDecimal getCalendarMonths() {
43 return calendarMonths;
44 }
45
46
47
48
49
50
51 public void setCalendarMonths(ScaleTwoDecimal calendarMonths) {
52 this.calendarMonths = calendarMonths;
53 }
54
55
56
57
58
59
60 public ScaleTwoDecimal getAcademicMonths() {
61 return academicMonths;
62 }
63
64
65
66
67
68
69 public void setAcademicMonths(ScaleTwoDecimal academicMonths) {
70 this.academicMonths = academicMonths;
71 }
72
73
74
75
76
77
78 public ScaleTwoDecimal getSummerMonths() {
79 return summerMonths;
80 }
81
82
83
84
85
86
87 public void setSummerMonths(ScaleTwoDecimal summerMonths) {
88 this.summerMonths = summerMonths;
89 }
90
91
92
93
94
95
96 public ScaleTwoDecimal getRequestedSalary() {
97 return requestedSalary;
98 }
99
100
101
102
103
104
105 public void setRequestedSalary(ScaleTwoDecimal requestedSalary) {
106 this.requestedSalary = requestedSalary;
107 }
108
109
110
111
112
113
114 public ScaleTwoDecimal getFringe() {
115 return fringe;
116 }
117
118
119
120
121
122
123 public void setFringe(ScaleTwoDecimal fringe) {
124 this.fringe = fringe;
125 }
126
127
128
129
130
131
132 public ScaleTwoDecimal getFundsRequested() {
133 return fundsRequested;
134 }
135
136
137
138
139
140
141 public void setFundsRequested(ScaleTwoDecimal fundsRequested) {
142 this.fundsRequested = fundsRequested;
143 }
144
145
146
147
148
149
150 public ScaleTwoDecimal getBaseSalary() {
151 return baseSalary;
152 }
153
154
155
156
157
158
159 public void setBaseSalary(ScaleTwoDecimal baseSalary) {
160 this.baseSalary = baseSalary;
161 }
162
163
164 public ScaleTwoDecimal getCostSharingAmount() {
165 return costSharingAmount;
166 }
167
168 public void setCostSharingAmount(ScaleTwoDecimal costSharingAmount) {
169 this.costSharingAmount = costSharingAmount;
170 }
171
172 public ScaleTwoDecimal getNonFundsRequested() {
173 return nonFundsRequested;
174 }
175
176 public void setNonFundsRequested(ScaleTwoDecimal nonFundsRequested) {
177 this.nonFundsRequested = nonFundsRequested;
178 }
179
180 public ScaleTwoDecimal getFringeCostSharing() {
181 return fringeCostSharing;
182 }
183
184 public void setFringeCostSharing(ScaleTwoDecimal fringeCostSharing) {
185 this.fringeCostSharing = fringeCostSharing;
186 }
187 }