• Source
    1. public class ProductEntity {
    2. private int id;
    3. private String productName;
    4. private BigDecimal price;
    5.  
    6.  
    7. public ProductEntity() {
    8.  
    9. }
    10. public int getId() {
    11. return id;
    12. }
    13. public void setId(int id) {
    14. this.id = id;
    15. }
    16. public String getProductName() {
    17. return productName;
    18. }
    19. public void setProductName(String productName) {
    20. this.productName = productName;
    21. }
    22. public BigDecimal getPrice() {
    23. return price;
    24. }
    25. public void setPrice(BigDecimal price) {
    26. this.price = price;
    27. }
    28.  
    29.  
    30. }
    31.