1 package org.kuali.ole.deliver.bo;
2
3
4 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5
6 import java.math.BigDecimal;
7 import java.sql.Timestamp;
8
9
10
11
12
13
14
15
16 public class OleItemLevelBillPayment extends PersistableBusinessObjectBase {
17
18 private String paymentId;
19 private String lineItemId;
20 private BigDecimal amount;
21 private Timestamp paymentDate;
22 private String createdUser;
23 private FeeType feeType = new FeeType();
24
25
26
27
28 public String getPaymentId() {
29 return paymentId;
30 }
31
32
33
34
35 public void setPaymentId(String paymentId) {
36 this.paymentId = paymentId;
37 }
38
39
40
41
42 public BigDecimal getAmount() {
43 return amount;
44 }
45
46
47
48
49 public void setAmount(BigDecimal amount) {
50 this.amount = amount;
51 }
52
53
54
55
56 public String getLineItemId() {
57 return lineItemId;
58 }
59
60
61
62
63 public void setLineItemId(String lineItemId) {
64 this.lineItemId = lineItemId;
65 }
66
67
68
69
70 public Timestamp getPaymentDate() {
71 return paymentDate;
72 }
73
74
75
76
77 public void setPaymentDate(Timestamp paymentDate) {
78 this.paymentDate = paymentDate;
79 }
80
81
82
83
84 public String getCreatedUser() {
85 return createdUser;
86 }
87
88
89
90
91 public void setCreatedUser(String createdUser) {
92 this.createdUser = createdUser;
93 }
94 }