This commit is contained in:
hky 2023-10-12 16:18:47 +08:00
parent 94090bfcb8
commit 8704a91554

View File

@ -0,0 +1,21 @@
package org.jeecg.modules.project.baseAPI.sftpAPI;
import java.io.IOException;
/**
* @Description: 通用API
* @Author: jeecg-boot
* @Date: 2023-09-20
* @Version: V1.0
*/
public interface IBizSftpAPIService {
/**
* sftp上传文件
* @param file
* @param cshFilePath
* @param fileName
*/
void sftpUpload(String file, String cshFilePath, String fileName);
}