1 package org.kuali.ole.deliver.bo;
2
3 import java.sql.Date;
4 import javax.persistence.Column;
5 import javax.persistence.Entity;
6 import javax.persistence.GeneratedValue;
7 import javax.persistence.Id;
8 import javax.persistence.Table;
9 import org.kuali.rice.krad.bo.DataObjectBase;
10 import org.kuali.rice.krad.data.jpa.PortableSequenceGenerator;
11
12
13
14
15
16
17
18
19 @Entity
20 @Table(name = "OLE_DLVR_RQST_HSTRY_REC_T")
21 public class OleDeliverRequestHistoryRecord extends DataObjectBase {
22
23 @PortableSequenceGenerator(name = "OLE_DLVR_RQST_HSTRY_REC_S")
24 @GeneratedValue(generator = "OLE_DLVR_RQST_HSTRY_REC_S")
25 @Id
26 @Column(name = "OLE_RQST_HSTRY_ID")
27 private String requestHistoryId;
28
29 @Column(name = "OLE_RQST_ID")
30 private String requestId;
31
32 @Column(name = "OLE_ITEM_ID")
33 private String itemId;
34
35 @Column(name = "OLE_LOAN_ID")
36 private String loanTransactionId;
37
38 @Column(name = "OLE_LN_ITM_NUM")
39 private String poLineItemNumber;
40
41 @Column(name = "OLE_RQST_TYP_CD")
42 private String deliverRequestTypeCode;
43
44 @Column(name = "OLE_PCK_LOC_CD")
45 private String pickUpLocationCode;
46
47 @Column(name = "OLE_OPRT_ID")
48 private String operatorId;
49
50 @Column(name = "OLE_MACH_ID")
51 private String machineId;
52
53 @Column(name = "ARCH_DT_TIME")
54 private Date archiveDate;
55
56 public String getRequestHistoryId() {
57 return requestHistoryId;
58 }
59
60 public void setRequestHistoryId(String requestHistoryId) {
61 this.requestHistoryId = requestHistoryId;
62 }
63
64 public String getRequestId() {
65 return requestId;
66 }
67
68 public void setRequestId(String requestId) {
69 this.requestId = requestId;
70 }
71
72 public String getItemId() {
73 return itemId;
74 }
75
76 public void setItemId(String itemId) {
77 this.itemId = itemId;
78 }
79
80 public String getLoanTransactionId() {
81 return loanTransactionId;
82 }
83
84 public void setLoanTransactionId(String loanTransactionId) {
85 this.loanTransactionId = loanTransactionId;
86 }
87
88 public String getPoLineItemNumber() {
89 return poLineItemNumber;
90 }
91
92 public void setPoLineItemNumber(String poLineItemNumber) {
93 this.poLineItemNumber = poLineItemNumber;
94 }
95
96 public String getDeliverRequestTypeCode() {
97 return deliverRequestTypeCode;
98 }
99
100 public void setDeliverRequestTypeCode(String deliverRequestTypeCode) {
101 this.deliverRequestTypeCode = deliverRequestTypeCode;
102 }
103
104 public String getPickUpLocationCode() {
105 return pickUpLocationCode;
106 }
107
108 public void setPickUpLocationCode(String pickUpLocationCode) {
109 this.pickUpLocationCode = pickUpLocationCode;
110 }
111
112 public String getOperatorId() {
113 return operatorId;
114 }
115
116 public void setOperatorId(String operatorId) {
117 this.operatorId = operatorId;
118 }
119
120 public String getMachineId() {
121 return machineId;
122 }
123
124 public void setMachineId(String machineId) {
125 this.machineId = machineId;
126 }
127
128 public Date getArchiveDate() {
129 return archiveDate;
130 }
131
132 public void setArchiveDate(Date archiveDate) {
133 this.archiveDate = archiveDate;
134 }
135 }