dcb
2025-07-09 e53252b99e7b49b435b7a6ee3eab21ae1bd7a055
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.se.nsl.domain.vo;
 
public class CrossSectionAnalysisResult {
    private double depth;
    private double velocity; //流速
    private double flowRate; //流量
    private long time; //时间
 
    public CrossSectionAnalysisResult() {}
 
    public CrossSectionAnalysisResult(double depth,double flowRate, double velocity, long time) {
        this.depth = depth;
        this.flowRate = flowRate;
        this.velocity = velocity;
        this.time = time;
    }
 
    public double getDepth() {
        return depth;
    }
 
    public void setDepth(double depth) {
        this.depth = depth;
    }
 
    public double getFlowRate() {
        return flowRate;
    }
 
    public void setFlowRate(double flowRate) {
        this.flowRate = flowRate;
    }
 
    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;
    }
}