1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.r1.common.entity;
17
18 import javax.persistence.Column;
19 import javax.persistence.Embeddable;
20
21 @Deprecated
22 @Embeddable
23 public class CurrencyAmount {
24
25 @Column(name="CURRENCY_TYPE")
26 private String currencyTypeKey;
27
28 @Column(name="CURRENCY_QUANT")
29 private Integer currencyQuantity;
30
31 public String getCurrencyTypeKey() {
32 return currencyTypeKey;
33 }
34
35 public void setCurrencyTypeKey(String currencyTypeKey) {
36 this.currencyTypeKey = currencyTypeKey;
37 }
38
39 public Integer getCurrencyQuantity() {
40 return currencyQuantity;
41 }
42
43 public void setCurrencyQuantity(Integer currencyQuantity) {
44 this.currencyQuantity = currencyQuantity;
45 }
46 }