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; } }