1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.select.businessobject;
17
18 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
19 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
20
21 import java.math.BigDecimal;
22
23 public class OleReceiptStatus extends PersistableBusinessObjectBase implements MutableInactivatable {
24
25 private BigDecimal receiptStatusId;
26 private String receiptStatusDocType;
27 private String receiptStatusCd;
28 private String receiptStatus;
29 private boolean active;
30
31
32
33
34
35
36 public BigDecimal getReceiptStatusId() {
37 return receiptStatusId;
38 }
39
40
41
42
43
44
45 public void setReceiptStatusId(BigDecimal receiptStatusId) {
46 this.receiptStatusId = receiptStatusId;
47 }
48
49
50
51
52
53
54 public String getReceiptStatus() {
55 return receiptStatus;
56 }
57
58
59
60
61
62
63 public void setReceiptStatus(String receiptStatus) {
64 this.receiptStatus = receiptStatus;
65 }
66
67
68
69
70
71
72 @Override
73 public boolean isActive() {
74 return active;
75 }
76
77
78
79
80
81
82 @Override
83 public void setActive(boolean active) {
84 this.active = active;
85 }
86
87
88
89
90
91
92 public String getReceiptStatusCd() {
93 return receiptStatusCd;
94 }
95
96
97
98
99
100
101 public void setReceiptStatusCd(String receiptStatusCd) {
102 this.receiptStatusCd = receiptStatusCd;
103 }
104
105
106
107
108
109
110 public String getReceiptStatusDocType() {
111 return receiptStatusDocType;
112 }
113
114
115
116
117
118
119 public void setReceiptStatusDocType(String receiptStatusDocType) {
120 this.receiptStatusDocType = receiptStatusDocType;
121 }
122
123 }