修改导出列表
This commit is contained in:
+7
-2
@@ -3605,8 +3605,13 @@ public class ParamsCollectManifestEOServiceImpl extends ServiceImpl<ParamsCollec
|
||||
pce.setParamsManifestId(paramsCollectManifestVO.getParamsManifestId());
|
||||
pce.setState(ExportStateEnum.EXPORTING.getValue());
|
||||
pce.setFileName(fileOriName+ ".zip");
|
||||
paramsCollectExportService.add(pce);
|
||||
|
||||
Thread thread1 = new Thread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
paramsCollectExportService.add(pce);
|
||||
}
|
||||
});
|
||||
thread1.start();
|
||||
//创建临时文件夹
|
||||
String fileNowPath = uploadpath + "/tempZip/" + UUID.randomUUID().toString().replace("-", "") + File.separator + fileOriName;
|
||||
File nowFile = new File(fileNowPath);
|
||||
|
||||
Reference in New Issue
Block a user