1 package org.kuali.ole.select.document;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5
6
7
8
9
10
11
12 public class OLEEResourcePO extends PersistableBusinessObjectBase {
13 private String oleEResPOId;
14 private String oleERSIdentifier;
15 private Integer olePOItemId;
16 private String instanceId;
17 private String title;
18 private Integer paidAmountCurrentFY;
19 private Integer paidAmountPreviousFY;
20 private Integer paidAmountTwoYearsPreviousFY;
21 private String purpose;
22 private String poItemId;
23 private OLEEResourceRecordDocument oleERSDocument;
24
25 public String getPoItemId() {
26 return poItemId;
27 }
28
29 public void setPoItemId(String poItemId) {
30 this.poItemId = poItemId;
31 }
32
33 public String getOleEResPOId() {
34 return oleEResPOId;
35 }
36
37 public void setOleEResPOId(String oleEResPOId) {
38 this.oleEResPOId = oleEResPOId;
39 }
40
41 public String getOleERSIdentifier() {
42 return oleERSIdentifier;
43 }
44
45 public void setOleERSIdentifier(String oleERSIdentifier) {
46 this.oleERSIdentifier = oleERSIdentifier;
47 }
48
49 public String getTitle() {
50 return title;
51 }
52
53 public void setTitle(String title) {
54 this.title = title;
55 }
56
57 public Integer getOlePOItemId() {
58 return olePOItemId;
59 }
60
61 public void setOlePOItemId(Integer olePOItemId) {
62 this.olePOItemId = olePOItemId;
63 }
64
65 public Integer getPaidAmountCurrentFY() {
66 return paidAmountCurrentFY;
67 }
68
69 public void setPaidAmountCurrentFY(Integer paidAmountCurrentFY) {
70 this.paidAmountCurrentFY = paidAmountCurrentFY;
71 }
72
73 public Integer getPaidAmountPreviousFY() {
74 return paidAmountPreviousFY;
75 }
76
77 public void setPaidAmountPreviousFY(Integer paidAmountPreviousFY) {
78 this.paidAmountPreviousFY = paidAmountPreviousFY;
79 }
80
81 public Integer getPaidAmountTwoYearsPreviousFY() {
82 return paidAmountTwoYearsPreviousFY;
83 }
84
85 public void setPaidAmountTwoYearsPreviousFY(Integer paidAmountTwoYearsPreviousFY) {
86 this.paidAmountTwoYearsPreviousFY = paidAmountTwoYearsPreviousFY;
87 }
88
89 public String getPurpose() {
90 return purpose;
91 }
92
93 public void setPurpose(String purpose) {
94 this.purpose = purpose;
95 }
96
97 public String getInstanceId() {
98 return instanceId;
99 }
100
101 public void setInstanceId(String instanceId) {
102 this.instanceId = instanceId;
103 }
104
105 public OLEEResourceRecordDocument getOleERSDocument() {
106 return oleERSDocument;
107 }
108
109 public void setOleERSDocument(OLEEResourceRecordDocument oleERSDocument) {
110 this.oleERSDocument = oleERSDocument;
111 }
112 }