View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.sql.Date;
6   
7   /**
8    * Created with IntelliJ IDEA.
9    * User: ?
10   * Date: 11/7/12
11   * Time: 6:01 PM
12   * To change this template use File | Settings | File Templates.
13   */
14  public class OleDeliverRequestHistoryRecord extends PersistableBusinessObjectBase {
15      private String requestHistoryId;
16      private String requestId;
17      private String itemId;
18      private String loanTransactionId;
19      private String poLineItemNumber;
20      private String deliverRequestTypeCode;
21      private String pickUpLocationCode;
22      private String operatorId;
23      private String machineId;
24      private Date archiveDate;
25  
26      public String getRequestHistoryId() {
27          return requestHistoryId;
28      }
29  
30      public void setRequestHistoryId(String requestHistoryId) {
31          this.requestHistoryId = requestHistoryId;
32      }
33  
34      public String getRequestId() {
35          return requestId;
36      }
37  
38      public void setRequestId(String requestId) {
39          this.requestId = requestId;
40      }
41  
42      public String getItemId() {
43          return itemId;
44      }
45  
46      public void setItemId(String itemId) {
47          this.itemId = itemId;
48      }
49  
50      public String getLoanTransactionId() {
51          return loanTransactionId;
52      }
53  
54      public void setLoanTransactionId(String loanTransactionId) {
55          this.loanTransactionId = loanTransactionId;
56      }
57  
58      public String getPoLineItemNumber() {
59          return poLineItemNumber;
60      }
61  
62      public void setPoLineItemNumber(String poLineItemNumber) {
63          this.poLineItemNumber = poLineItemNumber;
64      }
65  
66      public String getDeliverRequestTypeCode() {
67          return deliverRequestTypeCode;
68      }
69  
70      public void setDeliverRequestTypeCode(String deliverRequestTypeCode) {
71          this.deliverRequestTypeCode = deliverRequestTypeCode;
72      }
73  
74      public String getPickUpLocationCode() {
75          return pickUpLocationCode;
76      }
77  
78      public void setPickUpLocationCode(String pickUpLocationCode) {
79          this.pickUpLocationCode = pickUpLocationCode;
80      }
81  
82      public String getOperatorId() {
83          return operatorId;
84      }
85  
86      public void setOperatorId(String operatorId) {
87          this.operatorId = operatorId;
88      }
89  
90      public String getMachineId() {
91          return machineId;
92      }
93  
94      public void setMachineId(String machineId) {
95          this.machineId = machineId;
96      }
97  
98      public Date getArchiveDate() {
99          return archiveDate;
100     }
101 
102     public void setArchiveDate(Date archiveDate) {
103         this.archiveDate = archiveDate;
104     }
105 
106 
107 }