keymasterviriya1150

List

Oct 30th, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.06 KB | None | 0 0
  1. package order;
  2. // Generated Oct 31, 2016 3:43:36 AM by Hibernate Tools 4.3.1
  3.  
  4.  
  5.  
  6. /**
  7.  * Lists generated by hbm2java
  8.  */
  9. public class Lists  implements java.io.Serializable {
  10.  
  11.  
  12.      private int id;
  13.      private int idtype;
  14.      private String type;
  15.      private int price;
  16.  
  17.     public Lists() {
  18.     }
  19.  
  20.     public Lists(int id, int idtype, String type, int price) {
  21.        this.id = id;
  22.        this.idtype = idtype;
  23.        this.type = type;
  24.        this.price = price;
  25.     }
  26.    
  27.     public int getId() {
  28.         return this.id;
  29.     }
  30.    
  31.     public void setId(int id) {
  32.         this.id = id;
  33.     }
  34.     public int getIdtype() {
  35.         return this.idtype;
  36.     }
  37.    
  38.     public void setIdtype(int idtype) {
  39.         this.idtype = idtype;
  40.     }
  41.     public String getType() {
  42.         return this.type;
  43.     }
  44.    
  45.     public void setType(String type) {
  46.         this.type = type;
  47.     }
  48.     public int getPrice() {
  49.         return this.price;
  50.     }
  51.    
  52.     public void setPrice(int price) {
  53.         this.price = price;
  54.     }
  55.  
  56.  
  57.  
  58.  
  59. }
Advertisement
Add Comment
Please, Sign In to add comment