13693261870
2024-07-16 577701a313e21448467558b0a507bb7196415674
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.se.simu.service;
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
 
/**
 * 内涝服务类
 *
 * @author WWW
 * @date   2024-07-16
 */
@Slf4j
@Service
public class WaterService {
    @Value("${sys.path.gdal}")
    String gdalPath;
 
    @Value("${sys.path.data}")
    String dataPath;
 
    public Object getLayer(String serviceName) {
 
        return null;
    }
}