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 Amount {
24
25 @Column(name="UNIT_TYPE")
26 private String unitType;
27
28 @Column(name="UNIT_QUANTITY")
29 private String unitQuantity;
30
31 public String getUnitType() {
32 return unitType;
33 }
34
35 public void setUnitType(String unitType) {
36 this.unitType = unitType;
37 }
38
39 public String getUnitQuantity() {
40 return unitQuantity;
41 }
42
43 public void setUnitQuantity(String unitQuantity) {
44 this.unitQuantity = unitQuantity;
45 }
46 }