1
13693261870
2024-09-29 74661c2a73f1a5be9e600c3922530bbe5e01c313
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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() {
        //
    }
}