1 package org.kuali.ole.deliver.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.math.BigDecimal;
6 import java.sql.Timestamp;
7
8
9
10
11 public class OLEDeliverNotice extends PersistableBusinessObjectBase {
12 private String id;
13 private String loanId;
14 private String noticeType;
15 private Timestamp noticeToBeSendDate;
16 private BigDecimal replacementFeeAmount;
17 private String noticeSendType;
18 private String patronId;
19
20 public String getId() {
21 return id;
22 }
23
24 public void setId(String id) {
25 this.id = id;
26 }
27
28 public String getLoanId() {
29 return loanId;
30 }
31
32 public void setLoanId(String loanId) {
33 this.loanId = loanId;
34 }
35
36 public String getNoticeType() {
37 return noticeType;
38 }
39
40 public void setNoticeType(String noticeType) {
41 this.noticeType = noticeType;
42 }
43
44 public Timestamp getNoticeToBeSendDate() {
45 return noticeToBeSendDate;
46 }
47
48 public void setNoticeToBeSendDate(Timestamp noticeToBeSendDate) {
49 this.noticeToBeSendDate = noticeToBeSendDate;
50 }
51
52 public BigDecimal getReplacementFeeAmount() {
53 return replacementFeeAmount;
54 }
55
56 public void setReplacementFeeAmount(BigDecimal replacementFeeAmount) {
57 this.replacementFeeAmount = replacementFeeAmount;
58 }
59
60 public String getNoticeSendType() {
61 return noticeSendType;
62 }
63
64 public void setNoticeSendType(String noticeSendType) {
65 this.noticeSendType = noticeSendType;
66 }
67
68 public String getPatronId() {
69 return patronId;
70 }
71
72 public void setPatronId(String patronId) {
73 this.patronId = patronId;
74 }
75 }