1 package org.kuali.ole.circ.pojos; 2 3 public class CircReportData { 4 5 private String firstName; 6 private String lastName; 7 private String patronType; 8 private String checkoutDate; 9 private String itemLocation; 10 private String itemBarcode; 11 private String itemId; 12 private String itemType; 13 14 public String getPatronType() { 15 return patronType; 16 } 17 public void setPatronType(String patronType) { 18 this.patronType = patronType; 19 } 20 public String getFirstName() { 21 return firstName; 22 } 23 public String getLastName() { 24 return lastName; 25 } 26 public String getCheckoutDate() { 27 return checkoutDate; 28 } 29 public String getItemLocation() { 30 return itemLocation; 31 } 32 public String getItemBarcode() { 33 return itemBarcode; 34 } 35 public String getItemId() { 36 return itemId; 37 } 38 public String getItemType() { 39 return itemType; 40 } 41 public void setFirstName(String firstName) { 42 this.firstName = firstName; 43 44 } 45 public void setLastName(String lastName) { 46 this.lastName = lastName; 47 48 } 49 public void setCheckoutDate(String checkoutDate) { 50 this.checkoutDate = checkoutDate; 51 52 } 53 public void setItemId(String itemId) { 54 this.itemId = itemId; 55 56 } 57 public void setItemType(String itemType) { 58 this.itemType = itemType; 59 60 } 61 public void setItemLocation(String itemLocation) { 62 this.itemLocation = itemLocation; 63 64 } 65 public void setItemBarcode(String itemBarcode) { 66 this.itemBarcode = itemBarcode; 67 68 } 69 70 }