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

This commit is contained in:
zhangdaiscott
2023-12-07 11:13:17 +08:00
parent 1492ff1f2d
commit 14328e6064
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);
}
}