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 IndirectCostDetailsDto {
25
26
27 private String costType;
28 private ScaleTwoDecimal rate;
29 private ScaleTwoDecimal base;
30 private ScaleTwoDecimal funds;
31 private ScaleTwoDecimal baseCostSharing;
32 private ScaleTwoDecimal costSharing;
33
34
35
36
37
38
39 public String getCostType() {
40 return costType;
41 }
42
43
44
45
46
47
48 public void setCostType(String costType) {
49 this.costType = costType;
50 }
51
52
53
54
55
56
57 public ScaleTwoDecimal getRate() {
58 return rate;
59 }
60
61
62
63
64
65
66 public void setRate(ScaleTwoDecimal rate) {
67 this.rate = rate;
68 }
69
70
71
72
73
74
75 public ScaleTwoDecimal getBase() {
76 return base;
77 }
78
79
80
81
82
83
84 public void setBase(ScaleTwoDecimal base) {
85 this.base = base;
86 }
87
88
89
90
91
92
93 public ScaleTwoDecimal getFunds() {
94 return funds;
95 }
96
97
98
99
100
101
102 public void setFunds(ScaleTwoDecimal funds) {
103 this.funds = funds;
104 }
105
106
107
108 public ScaleTwoDecimal getBaseCostSharing() {
109 return baseCostSharing==null? ScaleTwoDecimal.ZERO:baseCostSharing;
110 }
111
112 public void setBaseCostSharing(ScaleTwoDecimal baseCostSharing) {
113 this.baseCostSharing = baseCostSharing;
114 }
115
116 public ScaleTwoDecimal getCostSharing() {
117 return costSharing==null? ScaleTwoDecimal.ZERO:costSharing;
118 }
119
120 public void setCostSharing(ScaleTwoDecimal costSharing) {
121 this.costSharing = costSharing;
122 }
123 }