Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. package model;
  2.  
  3. import javax.persistence.Entity;
  4. import javax.persistence.GeneratedValue;
  5. import javax.persistence.GenerationType;
  6. import javax.persistence.Id;
  7. import javax.persistence.Table;
  8.  
  9. @Entity
  10. @Table(name="flower_av")
  11. public class FlowerAv {
  12. @Id
  13. private int id;
  14. private double cy_boy_ort;
  15. private double cy_en_ort;
  16. private double ty_boy_ort;
  17. private double ty_en_ort;
  18.  
  19. public int getId() {
  20. return id;
  21. }
  22. public void setId(int id) {
  23. this.id = id;
  24. }
  25. public double getCy_boy_ort() {
  26. return cy_boy_ort;
  27. }
  28. public void setCy_boy_ort(double cy_boy_ort) {
  29. this.cy_boy_ort = cy_boy_ort;
  30. }
  31. public double getCy_en_ort() {
  32. return cy_en_ort;
  33. }
  34. public void setCy_en_ort(double cy_en_ort) {
  35. this.cy_en_ort = cy_en_ort;
  36. }
  37. public double getTy_boy_ort() {
  38. return ty_boy_ort;
  39. }
  40. public void setTy_boy_ort(double ty_boy_ort) {
  41. this.ty_boy_ort = ty_boy_ort;
  42. }
  43. public double getTy_en_ort() {
  44. return ty_en_ort;
  45. }
  46. public void setTy_en_ort(double ty_en_ort) {
  47. this.ty_en_ort = ty_en_ort;
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement