1 |
|
package org.kuali.student.lum.lu.bo; |
2 |
|
|
3 |
|
import javax.persistence.Column; |
4 |
|
|
5 |
|
import org.kuali.student.core.bo.KsBusinessObjectBase; |
6 |
|
|
|
|
| 0% |
Uncovered Elements: 12 (12) |
Complexity: 6 |
Complexity Density: 1 |
|
7 |
|
public class CluFeeAmount extends KsBusinessObjectBase { |
8 |
|
|
9 |
|
private static final long serialVersionUID = -6424787945578569434L; |
10 |
|
|
11 |
|
|
12 |
|
private String cluFeeRecordId; |
13 |
|
|
14 |
|
@Column(name="CURRENCY_TYPE") |
15 |
|
private String currencyTypeKey; |
16 |
|
|
17 |
|
@Column(name="CURRENCY_QUANT") |
18 |
|
private Integer currencyQuantity; |
19 |
|
|
20 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
21 |
0
|
public String getCluFeeRecordId() {... |
22 |
0
|
return cluFeeRecordId; |
23 |
|
} |
24 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
0
|
public void setCluFeeRecordId(String cluFeeRecordId) {... |
26 |
0
|
this.cluFeeRecordId = cluFeeRecordId; |
27 |
|
} |
28 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
29 |
0
|
public String getCurrencyTypeKey() {... |
30 |
0
|
return currencyTypeKey; |
31 |
|
} |
32 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
33 |
0
|
public void setCurrencyTypeKey(String currencyTypeKey) {... |
34 |
0
|
this.currencyTypeKey = currencyTypeKey; |
35 |
|
} |
36 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
0
|
public Integer getCurrencyQuantity() {... |
38 |
0
|
return currencyQuantity; |
39 |
|
} |
40 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
41 |
0
|
public void setCurrencyQuantity(Integer currencyQuantity) {... |
42 |
0
|
this.currencyQuantity = currencyQuantity; |
43 |
|
} |
44 |
|
|
45 |
|
} |