1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.product.patch.service.idel;
|
|
| import java.io.File;
| import java.util.Map;
|
| /**
| * @Author cheng
| * @Date 2024/10/23 10:07
| * @Desc 补丁导出
| */
| public interface IPatchImportService {
|
|
| Map<String, Object> uploadPatchFile(File patchFile) throws Exception;
|
| }
|
|