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