1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.common.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
|
20 | |
import javax.xml.bind.annotation.XmlAccessType; |
21 | |
import javax.xml.bind.annotation.XmlAccessorType; |
22 | |
import javax.xml.bind.annotation.XmlElement; |
23 | |
|
24 | |
@XmlAccessorType(XmlAccessType.FIELD) |
25 | 0 | public class TimeAmountInfo implements Serializable { |
26 | |
private static final long serialVersionUID = 1L; |
27 | |
@XmlElement |
28 | |
private String atpDurationTypeKey; |
29 | |
@XmlElement |
30 | |
private Integer timeQuantity; |
31 | |
|
32 | |
public String getAtpDurationTypeKey(){ |
33 | 0 | return atpDurationTypeKey; |
34 | |
} |
35 | |
public void setAtpDurationTypeKey(String atpDurationTypeKey){ |
36 | 0 | this.atpDurationTypeKey = atpDurationTypeKey; |
37 | 0 | } |
38 | |
public Integer getTimeQuantity(){ |
39 | 0 | return timeQuantity; |
40 | |
} |
41 | |
public void setTimeQuantity(Integer timeQuantity){ |
42 | 0 | this.timeQuantity = timeQuantity; |
43 | 0 | } |
44 | |
} |