ViewVisualization.java 601 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Copyright 2021 bejson.com
  3. */
  4. package com.steerinfo.route.vo.FullPathVisualizationTo;
  5. /**
  6. * Auto-generated: 2021-10-16 11:56:24
  7. *
  8. * @author bejson.com (i@bejson.com)
  9. * @website http://www.bejson.com/java2pojo/
  10. */
  11. public class ViewVisualization {
  12. private Result result;
  13. private int status;
  14. public void setResult(Result result) {
  15. this.result = result;
  16. }
  17. public Result getResult() {
  18. return result;
  19. }
  20. public void setStatus(int status) {
  21. this.status = status;
  22. }
  23. public int getStatus() {
  24. return status;
  25. }
  26. }