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 import java.util.ArrayList;
21 import java.util.List;
22
23 public class EquipmentDto {
24
25 private List<CostDto> cvEquipmentList;
26 private ScaleTwoDecimal totalFund;
27 private List<CostDto> cvExtraEquipmentList;
28 private ScaleTwoDecimal totalExtraFund = ScaleTwoDecimal.ZERO;
29 private ScaleTwoDecimal totalNonFund = ScaleTwoDecimal.ZERO;
30 private ScaleTwoDecimal totalExtraNonFund = ScaleTwoDecimal.ZERO;
31
32
33 public EquipmentDto() {
34 cvEquipmentList = new ArrayList<CostDto>();
35 cvExtraEquipmentList = new ArrayList<CostDto>();
36
37 }
38
39
40
41
42
43
44
45 public List<CostDto> getEquipmentList() {
46 return cvEquipmentList;
47 }
48
49
50
51
52
53
54 public void setEquipmentList(List<CostDto> cvEquipmentList) {
55 this.cvEquipmentList = cvEquipmentList;
56 }
57
58
59
60
61
62
63
64 public ScaleTwoDecimal getTotalFund() {
65 return totalFund;
66 }
67
68
69
70
71
72
73 public void setTotalFund(ScaleTwoDecimal totalFund) {
74 this.totalFund = totalFund;
75 }
76
77
78 public List<CostDto> getExtraEquipmentList() {
79 return cvExtraEquipmentList;
80 }
81
82
83
84
85
86
87 public void setExtraEquipmentList(List<CostDto> cvExtraEquipmentList) {
88 this.cvExtraEquipmentList = cvExtraEquipmentList;
89 }
90
91
92
93
94
95
96 public ScaleTwoDecimal getTotalExtraFund() {
97 return totalExtraFund;
98 }
99
100
101
102
103
104
105 public void setTotalExtraFund(ScaleTwoDecimal totalExtraFund) {
106 this.totalExtraFund = totalExtraFund;
107 }
108
109
110
111
112
113
114
115 public ScaleTwoDecimal getTotalNonFund() {
116 return totalNonFund;
117 }
118
119
120
121
122
123
124 public void setTotalNonFund(ScaleTwoDecimal totalNonFund) {
125 this.totalNonFund = totalNonFund;
126 }
127
128
129
130
131
132
133 public ScaleTwoDecimal getTotalExtraNonFund() {
134 return totalExtraNonFund;
135 }
136
137
138
139
140
141
142 public void setTotalExtraNonFund(ScaleTwoDecimal totalExtraNonFund) {
143 this.totalExtraNonFund = totalExtraNonFund;
144 }
145 }