dcb
2025-06-06 a2ee6e0dcdcfd9d1b8011a3cecb4e0fc4f6eeea3
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;
    }
}