Item.java
上传用户:qingshan
上传日期:2022-03-24
资源大小:9089k
文件大小:2k
源码类别:

Ajax

开发平台:

Java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package Entity;
  6. import java.io.Serializable;
  7. import javax.persistence.Entity;
  8. import javax.persistence.GeneratedValue;
  9. import javax.persistence.GenerationType;
  10. import javax.persistence.Id;
  11. @Entity
  12. public class Item implements Serializable {
  13.     private static final long serialVersionUID = 1L;
  14.     @Id
  15.     @GeneratedValue(strategy = GenerationType.AUTO)
  16.     private Long id;
  17.     private String itemname;
  18.     private String price;
  19.     private String num;
  20.     public Long getId() {
  21.         return id;
  22.     }
  23.     public void setId(Long id) {
  24.         this.id = id;
  25.     }
  26.     @Override
  27.     public int hashCode() {
  28.         int hash = 0;
  29.         hash += (id != null ? id.hashCode() : 0);
  30.         return hash;
  31.     }
  32.     @Override
  33.     public boolean equals(Object object) {
  34.         // TODO: Warning - this method won't work in the case the id fields are not set
  35.         if (!(object instanceof Item)) {
  36.             return false;
  37.         }
  38.         Item other = (Item) object;
  39.         if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
  40.             return false;
  41.         }
  42.         return true;
  43.     }
  44.     @Override
  45.     public String toString() {
  46.         return "Entity.Item[id=" + id + "]";
  47.     }
  48.     /**
  49.      * @return the itemname
  50.      */
  51.     public String getItemname() {
  52.         return itemname;
  53.     }
  54.     /**
  55.      * @param itemname the itemname to set
  56.      */
  57.     public void setItemname(String itemname) {
  58.         this.itemname = itemname;
  59.     }
  60.     /**
  61.      * @return the price
  62.      */
  63.     public String getPrice() {
  64.         return price;
  65.     }
  66.     /**
  67.      * @param price the price to set
  68.      */
  69.     public void setPrice(String price) {
  70.         this.price = price;
  71.     }
  72.     /**
  73.      * @return the num
  74.      */
  75.     public String getNum() {
  76.         return num;
  77.     }
  78.     /**
  79.      * @param num the num to set
  80.      */
  81.     public void setNum(String num) {
  82.         this.num = num;
  83.     }
  84. }