dcb
2025-06-19 303058307780d49e2ae4c815669f34b866206d86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
    }
}