123456789101112131415161718192021222324252627282930 |
- /**
- * Copyright 2021 bejson.com
- */
- package com.steerinfo.route.vo.FullPathVisualizationTo;
- /**
- * Auto-generated: 2021-10-16 11:56:24
- *
- * @author bejson.com (i@bejson.com)
- * @website http://www.bejson.com/java2pojo/
- */
- public class ViewVisualization {
- private Result result;
- private int status;
- public void setResult(Result result) {
- this.result = result;
- }
- public Result getResult() {
- return result;
- }
- public void setStatus(int status) {
- this.status = status;
- }
- public int getStatus() {
- return status;
- }
- }
|