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 TimeAmount {
24
25 @Column(name="ATP_DUR_TYP_KEY")
26 private String atpDurationTypeKey;
27
28 @Column(name="TM_QUANTITY")
29 private Integer timeQuantity;
30
31 public String getAtpDurationTypeKey() {
32 return atpDurationTypeKey;
33 }
34 public void setAtpDurationTypeKey(String atpDurationTypeKey) {
35 this.atpDurationTypeKey = atpDurationTypeKey;
36 }
37 public Integer getTimeQuantity() {
38 return timeQuantity;
39 }
40 public void setTimeQuantity(Integer timeQuantity) {
41 this.timeQuantity = timeQuantity;
42 }
43 }