1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package edu.sampleu.travel.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.Date; |
20 | |
|
21 | |
import org.kuali.rice.core.util.type.KualiPercent; |
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | 0 | public class TravelAccountInfo implements Serializable { |
28 | |
|
29 | |
private String number; |
30 | |
private String subAccount; |
31 | |
private String name; |
32 | |
private String subAccountName; |
33 | |
private KualiPercent subsidizedPercent; |
34 | |
private Date createDate; |
35 | |
private Long foId; |
36 | |
private String objectId; |
37 | |
private Long versionNumber; |
38 | |
|
39 | |
|
40 | |
public String getNumber() { |
41 | 0 | return this.number; |
42 | |
} |
43 | |
|
44 | |
public void setNumber(String number) { |
45 | 0 | this.number = number; |
46 | 0 | } |
47 | |
|
48 | |
public String getSubAccount() { |
49 | 0 | return this.subAccount; |
50 | |
} |
51 | |
|
52 | |
public void setSubAccount(String subAccount) { |
53 | 0 | this.subAccount = subAccount; |
54 | 0 | } |
55 | |
|
56 | |
public String getName() { |
57 | 0 | return this.name; |
58 | |
} |
59 | |
|
60 | |
public void setName(String name) { |
61 | 0 | this.name = name; |
62 | 0 | } |
63 | |
|
64 | |
public String getSubAccountName() { |
65 | 0 | return this.subAccountName; |
66 | |
} |
67 | |
|
68 | |
public void setSubAccountName(String subAccountName) { |
69 | 0 | this.subAccountName = subAccountName; |
70 | 0 | } |
71 | |
|
72 | |
public KualiPercent getSubsidizedPercent() { |
73 | 0 | return this.subsidizedPercent; |
74 | |
} |
75 | |
|
76 | |
public void setSubsidizedPercent(KualiPercent subsidizedPercent) { |
77 | 0 | this.subsidizedPercent = subsidizedPercent; |
78 | 0 | } |
79 | |
|
80 | |
public Date getCreateDate() { |
81 | 0 | return this.createDate; |
82 | |
} |
83 | |
|
84 | |
public void setCreateDate(Date createDate) { |
85 | 0 | this.createDate = createDate; |
86 | 0 | } |
87 | |
|
88 | |
public Long getFoId() { |
89 | 0 | return this.foId; |
90 | |
} |
91 | |
|
92 | |
public void setFoId(Long foId) { |
93 | 0 | this.foId = foId; |
94 | 0 | } |
95 | |
|
96 | |
public String getObjectId() { |
97 | 0 | return this.objectId; |
98 | |
} |
99 | |
|
100 | |
public void setObjectId(String objectId) { |
101 | 0 | this.objectId = objectId; |
102 | 0 | } |
103 | |
|
104 | |
public Long getVersionNumber() { |
105 | 0 | return this.versionNumber; |
106 | |
} |
107 | |
|
108 | |
public void setVersionNumber(Long versionNumber) { |
109 | 0 | this.versionNumber = versionNumber; |
110 | 0 | } |
111 | |
|
112 | |
} |