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
| package com.ruoyi.interchange.service;
|
| import com.ruoyi.interchange.domain.TbDataRules;
|
| import java.io.File;
| import java.util.List;
|
| public interface PlatformService {
| /**
| * 将文件夹下的文件校验,发送
| *
| * @param rule 校验规则对象
| * @param list 接收文件列表
| */
| public void checkFileName(TbDataRules rule, List<File>list);
| /**
| * 将发送失败的文件重新发送
| *
| */
| public void waitFileSend(String path);
|
|
| /**
| * 文件加密生成临时文件
| *
| * @param path 文件路径
| * @param tmpPath 临时文件路径
| */
| public void fileEncrypt(String path,String tmpPath) throws Exception;
| public void fileEncrypt2(String path,String tmpPath) throws Exception;
| public void fileEncrypt3(String path,String tmpPath) throws Exception;
|
| }
|
|