package com.se.nsl.domain.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@SuppressWarnings("ALL")
|
public class PondingVo {
|
@ApiModelProperty("积水深度")
|
private Double depth;
|
|
@ApiModelProperty("积水面积")
|
private Double area;
|
|
public PondingVo() {
|
}
|
|
public PondingVo(Double depth, Double area) {
|
this.depth = depth;
|
this.area = area;
|
}
|
|
public Double getDepth() {
|
return depth;
|
}
|
|
public void setDepth(Double depth) {
|
this.depth = depth;
|
}
|
|
public Double getArea() {
|
return area;
|
}
|
|
public void setArea(Double area) {
|
this.area = area;
|
}
|
}
|