package com.se.simu.domain.po;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@SuppressWarnings("ALL")
|
public class PondingPo {
|
@ApiModelProperty("积水区域")
|
private String polygon;
|
|
@ApiModelProperty("积水点")
|
private String point;
|
|
@ApiModelProperty("积水深度")
|
private Double depth;
|
|
public PondingPo() {
|
}
|
|
public PondingPo(String polygon, String point, Double depth) {
|
this.polygon = polygon;
|
this.point = point;
|
this.depth = depth;
|
}
|
|
public String getPolygon() {
|
return polygon;
|
}
|
|
public void setPolygon(String polygon) {
|
this.polygon = polygon;
|
}
|
|
public String getPoint() {
|
return point;
|
}
|
|
public void setPoint(String point) {
|
this.point = point;
|
}
|
|
public Double getDepth() {
|
return depth;
|
}
|
|
public void setDepth(Double depth) {
|
this.depth = depth;
|
}
|
}
|