ÎļþÃû´Ó src/main/java/com/se/simu/service/SedbService.java ÐÞ¸Ä |
| | |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | | * SDDBæå¡ç±» |
| | | * GEDBæå¡ç±» |
| | | * |
| | | * @author WWW |
| | | * @date 2024-09-12 |
| | |
| | | @Slf4j |
| | | @Service |
| | | @SuppressWarnings("ALL") |
| | | public class SedbService { |
| | | public class GedbService { |
| | | @Value("${sys.path.in}") |
| | | String inPath; |
| | | |
| | | @Value("${sedb.host}") |
| | | @Value("${gedb.host}") |
| | | String host; |
| | | |
| | | @Value("${sedb.user}") |
| | | @Value("${gedb.user}") |
| | | String user; |
| | | |
| | | @Value("${sedb.pwd}") |
| | | @Value("${gedb.pwd}") |
| | | String pwd; |
| | | |
| | | @Value("${sedb.dbName}") |
| | | @Value("${gedb.dbName}") |
| | | String dbName; |
| | | |
| | | @Value("${sedb.pageSize}") |
| | | @Value("${gedb.pageSize}") |
| | | Integer pageSize; |
| | | |
| | | @Value("#{'${sedb.layerNames}'}") |
| | | @Value("#{'${gedb.layerNames}'}") |
| | | List<String> layerNames; |
| | | |
| | | @Value("#{'${sedb.shpNames}'}") |
| | | @Value("#{'${gedb.shpNames}'}") |
| | | List<String> shpNames; |
| | | |
| | | @Value("#{'${sedb.sysFields}'}") |
| | | @Value("#{'${gedb.sysFields}'}") |
| | | List<String> sysFields; |
| | | |
| | | @Value("${sedb.demFile}") |
| | | @Value("${gedb.demFile}") |
| | | String demFile; |
| | | |
| | | @Value("${sedb.demType}") |
| | | @Value("${gedb.demType}") |
| | | String demType; |
| | | |
| | | @Value("${sedb.demName}") |
| | | @Value("${gedb.demName}") |
| | | String demName; |
| | | |
| | | String password; |