Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. package com.digital.fxservice.forex;
  2.  
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5.  
  6. public class FxRate {
  7.  
  8. private String id;
  9. private String base;
  10. private String target;
  11. private BigDecimal rate;
  12. private Date date;
  13.  
  14. public String getId() {
  15. return id;
  16. }
  17.  
  18. public void setId(String id) {
  19. this.id = id;
  20. }
  21.  
  22. public String getBase() {
  23. return base;
  24. }
  25.  
  26. public void setBase(String base) {
  27. this.base = base;
  28. }
  29.  
  30. public String getTarget() {
  31. return target;
  32. }
  33.  
  34. public void setTarget(String target) {
  35. this.target = target;
  36. }
  37.  
  38. public BigDecimal getRate() {
  39. return rate;
  40. }
  41.  
  42. public void setRate(BigDecimal rate) {
  43. this.rate = rate;
  44. }
  45.  
  46. public Date getDate() {
  47. return date;
  48. }
  49.  
  50. public void setDate(Date date) {
  51. this.date = date;
  52. }
  53.  
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement