feat: 添加合同全量同步任务和合格供方名录路径生成功能

refactor: 重构查询服务使用ParamConstant替换ServiceConstant
style: 清理无用代码和注释
fix: 修复CompanyCustomerEvaluationFormFileService查询方法
docs: 更新CloudYuVo和CompanyBankAccountVo字段注释
This commit is contained in:
2025-12-13 11:11:37 +08:00
parent 330418cfd6
commit 72edb07798
84 changed files with 1526 additions and 843 deletions

View File

@@ -211,7 +211,6 @@ public class UITools {
Platform.runLater(() -> {
box.getChildren().add(progressBar);
System.out.println("add progressBar = " + progressBar);
});
// progressBar.disabledProperty().bind(task.runningProperty());
@@ -223,19 +222,17 @@ public class UITools {
if (task instanceof Tasker<?> tasker) {
// 提交任务
try (ExecutorService executor = Executors.newVirtualThreadPerTaskExecutor()) {
executor.submit(tasker);
}
new Thread(tasker).start();
// try (ExecutorService executor = Executors.newVirtualThreadPerTaskExecutor()) {
// executor.submit(tasker);
// System.out.println("executor = " + executor);
// }
}
if (init != null) {
init.accept(consumer::test);
}
dialog.showAndWait();
if (task.getProgress() < 1) {
task.cancel();
}
// if (task.isRunning()) {
// }
task.cancel();
}
private static String printStackTrace(Throwable e) {