keymasterviriya1150

orders

Oct 30th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.48 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.  * Orders generated by hbm2java
  8.  */
  9. public class Orders  implements java.io.Serializable {
  10.  
  11.  
  12.      private Integer id;
  13.      private int idtype;
  14.      private String type;
  15.      private int price;
  16.      private int no;
  17.      private int priceResult;
  18.  
  19.     public Orders() {
  20.     }
  21.  
  22.     public Orders(int idtype, String type, int price, int no, int priceResult) {
  23.        this.idtype = idtype;
  24.        this.type = type;
  25.        this.price = price;
  26.        this.no = no;
  27.        this.priceResult = priceResult;
  28.     }
  29.    
  30.     public Integer getId() {
  31.         return this.id;
  32.     }
  33.    
  34.     public void setId(Integer id) {
  35.         this.id = id;
  36.     }
  37.     public int getIdtype() {
  38.         return this.idtype;
  39.     }
  40.    
  41.     public void setIdtype(int idtype) {
  42.         this.idtype = idtype;
  43.     }
  44.     public String getType() {
  45.         return this.type;
  46.     }
  47.    
  48.     public void setType(String type) {
  49.         this.type = type;
  50.     }
  51.     public int getPrice() {
  52.         return this.price;
  53.     }
  54.    
  55.     public void setPrice(int price) {
  56.         this.price = price;
  57.     }
  58.     public int getNo() {
  59.         return this.no;
  60.     }
  61.    
  62.     public void setNo(int no) {
  63.         this.no = no;
  64.     }
  65.     public int getPriceResult() {
  66.         return this.priceResult;
  67.     }
  68.    
  69.     public void setPriceResult(int priceResult) {
  70.         this.priceResult = priceResult;
  71.     }
  72.  
  73.  
  74.  
  75.  
  76. }
Add Comment
Please, Sign In to add comment