升级online到3.6.0版本(注意有升级sql)

This commit is contained in:
zhangdaiscott
2023-12-07 11:13:17 +08:00
parent b3e4a73a34
commit 2a00a24058
2 changed files with 8 additions and 3 deletions

View File

@ -24,4 +24,9 @@ public class ImportFileServiceImpl implements ImportFileServiceI {
public String doUpload(byte[] data) {
return CommonUtils.uploadOnlineImage(data, upLoadPath, "import", uploadType);
}
@Override
public String doUpload(byte[] data, String saveUrl) {
return CommonUtils.uploadOnlineImage(data, upLoadPath, "import", uploadType);
}
}