| | |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 属性配置类 |
| | | * |
| | | * @author WWW |
| | | * @date 2024-09-26 |
| | | */ |
| | | @Configuration |
| | | @SuppressWarnings("ALL") |
| | | @ConfigurationProperties(prefix = "config") |
| | |
| | | |
| | | private String rainStation; |
| | | |
| | | private Integer rainPeriod; |
| | | private Double rainPeriod; |
| | | |
| | | private String flowUnits; |
| | | |
| | | private String solverBat; |
| | | |
| | | private String sww2tifBat; |
| | | |
| | | private List<Integer> sizes; |
| | | |
| | | private String terrainFile; |
| | | |
| | | private String buildingFile; |
| | | |
| | | private String buildingKey; |
| | | |
| | | private String waterPath; |
| | | |
| | | private String flowPath; |
| | | |
| | | private boolean copyTif; |
| | | |
| | | private String tifPath; |
| | | |
| | | public String getVer() { |
| | | return ver; |
| | |
| | | this.rainStation = rainStation; |
| | | } |
| | | |
| | | public Integer getRainPeriod() { |
| | | public Double getRainPeriod() { |
| | | return rainPeriod; |
| | | } |
| | | |
| | | public void setRainPeriod(Integer rainPeriod) { |
| | | public void setRainPeriod(Double rainPeriod) { |
| | | this.rainPeriod = rainPeriod; |
| | | } |
| | | |
| | | public List<Integer> getSizes() { |
| | | return sizes; |
| | | } |
| | | |
| | | public void setSizes(List<Integer> sizes) { |
| | | this.sizes = sizes; |
| | | } |
| | | |
| | | public String getTerrainFile() { |
| | | return terrainFile; |
| | | } |
| | | |
| | | public void setTerrainFile(String terrainFile) { |
| | | this.terrainFile = terrainFile; |
| | | } |
| | | |
| | | public String getBuildingFile() { |
| | | return buildingFile; |
| | | } |
| | | |
| | | public void setBuildingFile(String buildingFile) { |
| | | this.buildingFile = buildingFile; |
| | | } |
| | | |
| | | public String getWaterPath() { |
| | | return waterPath; |
| | | } |
| | | |
| | | public void setWaterPath(String waterPath) { |
| | | this.waterPath = waterPath; |
| | | } |
| | | |
| | | public String getFlowPath() { |
| | | return flowPath; |
| | | } |
| | | |
| | | public void setFlowPath(String flowPath) { |
| | | this.flowPath = flowPath; |
| | | } |
| | | |
| | | public String getSww2tifBat() { |
| | | return sww2tifBat; |
| | | } |
| | | |
| | | public void setSww2tifBat(String sww2tifBat) { |
| | | this.sww2tifBat = sww2tifBat; |
| | | } |
| | | |
| | | public String getBuildingKey() { |
| | | return buildingKey; |
| | | } |
| | | |
| | | public void setBuildingKey(String buildingKey) { |
| | | this.buildingKey = buildingKey; |
| | | } |
| | | |
| | | public boolean getCopyTif() { |
| | | return copyTif; |
| | | } |
| | | |
| | | public void setCopyTif(boolean copyTif) { |
| | | this.copyTif = copyTif; |
| | | } |
| | | |
| | | public String getTifPath() { |
| | | return tifPath; |
| | | } |
| | | |
| | | public void setTifPath(String tifPath) { |
| | | this.tifPath = tifPath; |
| | | } |
| | | } |