Advertisement
muradul

Untitled

Oct 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. public class AllRoadMessage {
  2.  
  3. private Integer Staus;
  4. private String messege;
  5. private List<RestRoad> restRoadList;
  6.  
  7. public AllRoadMessage() {
  8. }
  9.  
  10. public AllRoadMessage(Integer staus, String messege, List<RestRoad> restRoadList) {
  11. Staus = staus;
  12. this.messege = messege;
  13. this.restRoadList = restRoadList;
  14. }
  15.  
  16. public Integer getStaus() {
  17. return Staus;
  18. }
  19.  
  20. public void setStaus(Integer staus) {
  21. Staus = staus;
  22. }
  23.  
  24. public String getMessege() {
  25. return messege;
  26. }
  27.  
  28. public void setMessege(String messege) {
  29. this.messege = messege;
  30. }
  31.  
  32. public List<RestRoad> getRestRoadList() {
  33. return restRoadList;
  34. }
  35.  
  36. public void setRestRoadList(List<RestRoad> restRoadList) {
  37. this.restRoadList = restRoadList;
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement