1 16 17 package org.springframework.ui.jasperreports; 18 19 22 public class ProductBean { 23 24 private int id; 25 26 private String name; 27 28 private float quantity; 29 30 private float price; 31 32 public int getId() { 33 return id; 34 } 35 36 public void setId(int id) { 37 this.id = id; 38 } 39 40 public String getName() { 41 return name; 42 } 43 44 public void setName(String name) { 45 this.name = name; 46 } 47 48 public float getQuantity() { 49 return quantity; 50 } 51 52 public void setQuantity(float quantity) { 53 this.quantity = quantity; 54 } 55 56 public float getPrice() { 57 return price; 58 } 59 60 public void setPrice(float price) { 61 this.price = price; 62 } 63 64 } 65 | Popular Tags |