package com.se.simu.service;
|
|
import com.se.simu.config.PropertiesConfig;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
/**
|
* 内涝求解器服务类
|
*
|
* @author WWW
|
* @date 2024-09-29
|
*/
|
@Slf4j
|
@Service
|
@SuppressWarnings("ALL")
|
public class UwService {
|
@Resource
|
PropertiesConfig config;
|
|
public void createRainFile() {
|
//
|
}
|
|
public void createConfig() {
|
//
|
}
|
|
public void callExe() {
|
//
|
}
|
|
public void copeWaterFiles() {
|
//
|
}
|
|
public void copeDrainFiles() {
|
//
|
}
|
}
|