package com.se.nsl.domain.vo; public class SimuResult { private double depth; private double velocity; private long time; public double getDepth() { return depth; } public void setDepth(double depth) { this.depth = depth; } public double getVelocity() { return velocity; } public void setVelocity(double velocity) { this.velocity = velocity; } public long getTime() { return time; } public void setTime(long time) { this.time = time; } }