| | |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 属性配置类 |
| | | * |
| | | * @author WWW |
| | | * @date 2024-09-26 |
| | | */ |
| | | @Configuration |
| | | @SuppressWarnings("ALL") |
| | | @ConfigurationProperties(prefix = "config") |
| | |
| | | |
| | | private String buildingFile; |
| | | |
| | | private String buildingKey; |
| | | |
| | | private String waterPath; |
| | | |
| | | private String flowPath; |
| | | |
| | | private boolean copyTif; |
| | | |
| | | private String tifPath; |
| | | |
| | | public String getVer() { |
| | | return ver; |
| | |
| | | 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; |
| | | } |
| | | } |