dcb
2025-06-19 50155d2d6da56ac59a672755a704ed1503ffe3f6
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;
    }
}