From cbd223ee2185f2cc39267e37a72edaadf6a3aa19 Mon Sep 17 00:00:00 2001
From: sinake <sinake1@qq.com>
Date: 星期三, 18 三月 2026 08:57:12 +0800
Subject: [PATCH] 死亡判定相关接口新增死亡判定说明、扩展 器官分配相关接口新增记录状态、附件、扩展 器官获取相关接口新增附件、扩展 新开发去态查询API接口
---
ruoyi-quartz/src/main/java/com/ruoyi/quartz/task/RyTask.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ruoyi-quartz/src/main/java/com/ruoyi/quartz/task/RyTask.java b/ruoyi-quartz/src/main/java/com/ruoyi/quartz/task/RyTask.java
index 31ebdfd..bbb4230 100644
--- a/ruoyi-quartz/src/main/java/com/ruoyi/quartz/task/RyTask.java
+++ b/ruoyi-quartz/src/main/java/com/ruoyi/quartz/task/RyTask.java
@@ -95,7 +95,7 @@
List<ServiceFund> serviceFunds = serviceFundService.queryInfoById(serviceFund);
ServiceFund serviceFund1 = serviceFunds.get(0);
serviceFund1.setFlowlevel(100L);
- serviceFund1.setDel_flag(0);
+ serviceFund1.setDelFlag(0);
serviceFund1.setRecordstatus(-1);
serviceFund1.setBackflowlevel(199);
serviceFundService.updateById(serviceFund1);
@@ -737,7 +737,7 @@
ServiceFund serviceFund = new ServiceFund();
serviceFund.setFlowlevel(totallevel);
serviceFund.setUploadStates(1);
- serviceFund.setDel_flag(0);
+ serviceFund.setDelFlag(0);
serviceFund.setApplytype(applyType);
List<ServiceFund> serviceFundList = serviceFundService.queryList(serviceFund);
for (ServiceFund serviceFund1 : serviceFundList) {
--
Gitblit v1.9.3