001package org.kuali.ole.circ.pojos;
002
003public class CircReportData {
004        
005        private String firstName;
006        private String lastName;
007        private String patronType;
008        private String checkoutDate;
009        private String itemLocation;
010        private String itemBarcode;
011        private String itemId;
012        private String itemType;
013        
014        public String getPatronType() {
015                return patronType;
016        }
017        public void setPatronType(String patronType) {
018                this.patronType = patronType;
019        }
020        public String getFirstName() {
021                return firstName;
022        }
023        public String getLastName() {
024                return lastName;
025        }
026        public String getCheckoutDate() {
027                return checkoutDate;
028        }
029        public String getItemLocation() {
030                return itemLocation;
031        }
032        public String getItemBarcode() {
033                return itemBarcode;
034        }
035        public String getItemId() {
036                return itemId;
037        }
038        public String getItemType() {
039                return itemType;
040        }
041        public void setFirstName(String firstName) {
042                this.firstName = firstName;
043                
044        }
045        public void setLastName(String lastName) {
046                this.lastName = lastName;
047                
048        }
049        public void setCheckoutDate(String checkoutDate) {
050                this.checkoutDate = checkoutDate;
051                
052        }
053        public void setItemId(String itemId) {
054                this.itemId = itemId;
055                
056        }
057        public void setItemType(String itemType) {
058                this.itemType = itemType;
059                
060        }
061        public void setItemLocation(String itemLocation) {
062                this.itemLocation = itemLocation;
063                
064        }
065        public void setItemBarcode(String itemBarcode) {
066                this.itemBarcode = itemBarcode;
067                
068        }
069
070}