mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-10 09:04:26 +08:00
v2.4.0 be code
This commit is contained in:
@@ -1,34 +0,0 @@
|
||||
package com.xiaojukeji.kafka.manager.openapi.common.vo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @author zengqiao
|
||||
* @date 20/8/14
|
||||
*/
|
||||
@ApiModel(description="Topic流量统计信息")
|
||||
public class TopicStatisticMetricsVO {
|
||||
@ApiModelProperty(value="峰值流入流量(B/s)")
|
||||
private Double peakBytesIn;
|
||||
|
||||
public TopicStatisticMetricsVO(Double peakBytesIn) {
|
||||
this.peakBytesIn = peakBytesIn;
|
||||
|
||||
}
|
||||
|
||||
public Double getPeakBytesIn() {
|
||||
return peakBytesIn;
|
||||
}
|
||||
|
||||
public void setPeakBytesIn(Double peakBytesIn) {
|
||||
this.peakBytesIn = peakBytesIn;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "TopicStatisticMetricsVO{" +
|
||||
"peakBytesIn=" + peakBytesIn +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user