1
13693261870
2024-09-29 61fd1fa2304ac14f770dd63073c1396ad5a6b249
1
已添加1个文件
已修改1个文件
35 ■■■■■ 文件已修改
src/main/java/com/se/simu/service/SimuService.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/se/simu/service/UwService.java 29 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/se/simu/service/SimuService.java
@@ -47,6 +47,9 @@
    @Resource
    GedbService gedbService;
    @Resource
    UwService uwService;
    /**
     * 鑾峰彇
     */
@@ -186,7 +189,8 @@
            gedbService.copeDem(token, data);
            update(simu, 4, null);
            // 妯℃嫙鍐呮稘浠跨湡
            uwService.createConfig();
            uwService.callExe();
            //update(simu, 5, null);
            // 澶勭悊浠跨湡鏁版嵁
src/main/java/com/se/simu/service/UwService.java
对比新文件
@@ -0,0 +1,29 @@
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 createConfig() {
        //
    }
    public void callExe() {
        //
    }
}