package com.se.nsl.domain.vo;
|
|
public class SimuResult {
|
|
private double depth;
|
private double velocity;
|
|
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;
|
}
|
}
|