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 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 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 }