| | |
| | | * @author WWW |
| | | * @date 2024-09-18 |
| | | */ |
| | | @Data |
| | | @ToString |
| | | @SuppressWarnings("ALL") |
| | | @ApiModel(value = "创建仿真视图类") |
| | |
| | | |
| | | @ApiModelProperty("仿真备注") |
| | | private String bak; |
| | | |
| | | @ApiModelProperty("是否为防汛(0-否,1-是)") |
| | | private Integer isFlood; |
| | | |
| | | @ApiModelProperty("防汛开始时间(秒)") |
| | | private Integer floodStart; |
| | | |
| | | @ApiModelProperty("防汛结束时间(秒)") |
| | | private Integer floodEnd; |
| | | |
| | | @ApiModelProperty("防汛高度(mm)") |
| | | private Double floodHeight; |
| | | |
| | | @ApiModelProperty("防汛类型(沙袋,防水板)") |
| | | private String floodType; |
| | | |
| | | @ApiModelProperty("防汛最小X") |
| | | private Double floodMinx; |
| | | |
| | | @ApiModelProperty("防汛最小Y") |
| | | private Double floodMiny; |
| | | |
| | | @ApiModelProperty("防汛最大X") |
| | | private Double floodMaxx; |
| | | |
| | | @ApiModelProperty("防汛最大Y") |
| | | private Double floodMaxy; |
| | | |
| | | public Double getMinx() { |
| | | return minx; |
| | | } |
| | | |
| | | public void setMinx(Double minx) { |
| | | this.minx = minx; |
| | | } |
| | | |
| | | public Double getMiny() { |
| | | return miny; |
| | | } |
| | | |
| | | public void setMiny(Double miny) { |
| | | this.miny = miny; |
| | | } |
| | | |
| | | public Double getMaxx() { |
| | | return maxx; |
| | | } |
| | | |
| | | public void setMaxx(Double maxx) { |
| | | this.maxx = maxx; |
| | | } |
| | | |
| | | public Double getMaxy() { |
| | | return maxy; |
| | | } |
| | | |
| | | public void setMaxy(Double maxy) { |
| | | this.maxy = maxy; |
| | | } |
| | | |
| | | public Integer getNum() { |
| | | return num; |
| | | } |
| | | |
| | | public void setNum(Integer num) { |
| | | this.num = num; |
| | | } |
| | | |
| | | public Double getTotal() { |
| | | return total; |
| | | } |
| | | |
| | | public void setTotal(Double total) { |
| | | this.total = total; |
| | | } |
| | | |
| | | public Integer getDuration() { |
| | | return duration; |
| | | } |
| | | |
| | | public void setDuration(Integer duration) { |
| | | this.duration = duration; |
| | | } |
| | | |
| | | public String getName() { |
| | | return name; |
| | | } |
| | | |
| | | public void setName(String name) { |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getBak() { |
| | | return bak; |
| | | } |
| | | |
| | | public void setBak(String bak) { |
| | | this.bak = bak; |
| | | } |
| | | |
| | | public Integer getIsFlood() { |
| | | return isFlood; |
| | | } |
| | | |
| | | public void setIsFlood(Integer isFlood) { |
| | | this.isFlood = isFlood; |
| | | } |
| | | |
| | | public Integer getFloodStart() { |
| | | return floodStart; |
| | | } |
| | | |
| | | public void setFloodStart(Integer floodStart) { |
| | | this.floodStart = floodStart; |
| | | } |
| | | |
| | | public Integer getFloodEnd() { |
| | | return floodEnd; |
| | | } |
| | | |
| | | public void setFloodEnd(Integer floodEnd) { |
| | | this.floodEnd = floodEnd; |
| | | } |
| | | |
| | | public Double getFloodHeight() { |
| | | return floodHeight; |
| | | } |
| | | |
| | | public void setFloodHeight(Double floodHeight) { |
| | | this.floodHeight = floodHeight; |
| | | } |
| | | |
| | | public String getFloodType() { |
| | | return floodType; |
| | | } |
| | | |
| | | public void setFloodType(String floodType) { |
| | | this.floodType = floodType; |
| | | } |
| | | |
| | | public Double getFloodMinx() { |
| | | return floodMinx; |
| | | } |
| | | |
| | | public void setFloodMinx(Double floodMinx) { |
| | | this.floodMinx = floodMinx; |
| | | } |
| | | |
| | | public Double getFloodMiny() { |
| | | return floodMiny; |
| | | } |
| | | |
| | | public void setFloodMiny(Double floodMiny) { |
| | | this.floodMiny = floodMiny; |
| | | } |
| | | |
| | | public Double getFloodMaxx() { |
| | | return floodMaxx; |
| | | } |
| | | |
| | | public void setFloodMaxx(Double floodMaxx) { |
| | | this.floodMaxx = floodMaxx; |
| | | } |
| | | |
| | | public Double getFloodMaxy() { |
| | | return floodMaxy; |
| | | } |
| | | |
| | | public void setFloodMaxy(Double floodMaxy) { |
| | | this.floodMaxy = floodMaxy; |
| | | } |
| | | } |