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;
|
}
|
}
|