dcb
2025-05-26 6d817179edaf2a6c793595056f5d250eb4396ab0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
    }
}