1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.core.entity;
17
18 import javax.persistence.Column;
19 import javax.persistence.Embeddable;
20
21 @Embeddable
22 public class TimeAmount {
23
24 @Column(name="ATP_DUR_TYP_KEY")
25 private String atpDurationTypeKey;
26
27 @Column(name="TM_QUANTITY")
28 private Integer timeQuantity;
29
30 public String getAtpDurationTypeKey() {
31 return atpDurationTypeKey;
32 }
33 public void setAtpDurationTypeKey(String atpDurationTypeKey) {
34 this.atpDurationTypeKey = atpDurationTypeKey;
35 }
36 public Integer getTimeQuantity() {
37 return timeQuantity;
38 }
39 public void setTimeQuantity(Integer timeQuantity) {
40 this.timeQuantity = timeQuantity;
41 }
42 }