Advertisement
muradul

Untitled

Nov 12th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. public class RestPriceMessage implements Serializable {
  2.  
  3. private Integer status;
  4. private String massage;
  5. private List<RestPrice> restPrices;
  6.  
  7. public RestPriceMessage() {
  8. }
  9.  
  10. public RestPriceMessage(Integer status, String massage, List<RestPrice> restPrices) {
  11. this.status = status;
  12. this.massage = massage;
  13. this.restPrices = restPrices;
  14. }
  15.  
  16.  
  17. public Integer getStatus() {
  18. return status;
  19. }
  20.  
  21. public void setStatus(Integer status) {
  22. this.status = status;
  23. }
  24.  
  25. public String getMassage() {
  26. return massage;
  27. }
  28.  
  29. public void setMassage(String massage) {
  30. this.massage = massage;
  31. }
  32.  
  33. public List<RestPrice> getRestPrices() {
  34. return restPrices;
  35. }
  36.  
  37. public void setRestPrices(List<RestPrice> restPrices) {
  38. this.restPrices = restPrices;
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement