From 90c00ebe32f182d7582fa7829d774af3a7539168 Mon Sep 17 00:00:00 2001 From: yang chen Date: Fri, 31 Oct 2025 16:48:41 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat(sql):=20=E6=9B=B4=E6=96=B0=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=E5=90=8C=E6=AD=A5=E6=A0=87=E8=AE=B0=E8=A1=A8?= =?UTF-8?q?-=20=E5=9C=A8=20z=5Fexec=5Flast.sql=20=E4=B8=AD=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=A4=9A=E4=B8=AA=E6=96=B0=E8=A1=A8=E5=90=8D=E5=88=B0?= =?UTF-8?q?=20IS=5FDB=5FSYNC=20=E6=9B=B4=E6=96=B0=E5=88=97=E8=A1=A8=20-=20?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=20lc=5Fdrill=5Fplan,=20lc=5Fconfined=5Fspace?= =?UTF-8?q?=5Foperation=20=E7=AD=89=E5=85=B1=2010=E4=B8=AA=E8=A1=A8=20-=20?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E6=96=B0=E7=9A=84=20z=5Fexec=5Flast.sql=20?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=BB=A5=E6=89=A7=E8=A1=8C=E7=9B=B8=E5=90=8C?= =?UTF-8?q?=E7=9A=84=E6=9B=B4=E6=96=B0=E9=80=BB=E8=BE=91=20-=20=E7=A1=AE?= =?UTF-8?q?=E4=BF=9D=E6=89=80=E6=9C=89=E7=9B=B8=E5=85=B3=E8=A1=A8=E7=9A=84?= =?UTF-8?q?=20IS=5FDB=5FSYNC=20=E5=AD=97=E6=AE=B5=E8=A2=AB=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E8=AE=BE=E7=BD=AE=E4=B8=BA=20'N'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SQL/202510/20251031/z_exec_last.sql | 6 +++++- SQL/202510/20251031_2/z_exec_last.sql | 10 ++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 SQL/202510/20251031_2/z_exec_last.sql diff --git a/SQL/202510/20251031/z_exec_last.sql b/SQL/202510/20251031/z_exec_last.sql index 46106b5..bbe867a 100644 --- a/SQL/202510/20251031/z_exec_last.sql +++ b/SQL/202510/20251031/z_exec_last.sql @@ -2,5 +2,9 @@ update "LOWCODE_FRAME"."LOWCODE_DBFORM" set IS_DB_SYNC='N' where TABLE_NAME in ( 'lc_item_result', 'lc_training_plan', 'lc_training_record', - 'lc_work_item', 'lc_work_item_issus' + 'lc_work_item', 'lc_work_item_issus', 'lc_drill_plan', + 'lc_confined_space_operation', 'lc_emergency_plan', 'lc_exam_plan', + 'lc_fire_operation', 'lc_high_operation', 'lc_land_operation', + 'lc_lifting_operation', 'lc_outside_person', + 'lc_risk_identify_assessment', 'lc_temporary_power_operation' ); diff --git a/SQL/202510/20251031_2/z_exec_last.sql b/SQL/202510/20251031_2/z_exec_last.sql new file mode 100644 index 0000000..bbe867a --- /dev/null +++ b/SQL/202510/20251031_2/z_exec_last.sql @@ -0,0 +1,10 @@ +update "LOWCODE_FRAME"."LOWCODE_DBFORM" +set IS_DB_SYNC='N' +where TABLE_NAME in ( + 'lc_item_result', 'lc_training_plan', 'lc_training_record', + 'lc_work_item', 'lc_work_item_issus', 'lc_drill_plan', + 'lc_confined_space_operation', 'lc_emergency_plan', 'lc_exam_plan', + 'lc_fire_operation', 'lc_high_operation', 'lc_land_operation', + 'lc_lifting_operation', 'lc_outside_person', + 'lc_risk_identify_assessment', 'lc_temporary_power_operation' + ); From 15d4b450b6165a5cb923f93a02a3792ab6345540 Mon Sep 17 00:00:00 2001 From: yang chen Date: Fri, 31 Oct 2025 17:52:27 +0800 Subject: [PATCH 2/2] =?UTF-8?q?chore(auth):=E4=B8=B4=E6=97=B6=E6=B3=A8?= =?UTF-8?q?=E9=87=8A=E6=9D=83=E9=99=90=E6=A0=A1=E9=AA=8C=E6=B3=A8=E8=A7=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 注释了任务分配规则查询接口的权限校验注解- 保留了原有的参数校验逻辑 - 为后续权限配置调整做准备 --- .../service/bpm/controller/BpmTaskAssignRuleController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jeelowcode-service/jeelowcode-service-bpm-biz/src/main/java/com/jeelowcode/service/bpm/controller/BpmTaskAssignRuleController.java b/jeelowcode-service/jeelowcode-service-bpm-biz/src/main/java/com/jeelowcode/service/bpm/controller/BpmTaskAssignRuleController.java index 489d912..7ea0a49 100644 --- a/jeelowcode-service/jeelowcode-service-bpm-biz/src/main/java/com/jeelowcode/service/bpm/controller/BpmTaskAssignRuleController.java +++ b/jeelowcode-service/jeelowcode-service-bpm-biz/src/main/java/com/jeelowcode/service/bpm/controller/BpmTaskAssignRuleController.java @@ -34,7 +34,7 @@ public class BpmTaskAssignRuleController { @Parameter(name = "modelId", description = "模型编号", example = "1024"), @Parameter(name = "processDefinitionId", description = "流程定义的编号", example = "2048") }) - @PreAuthorize("@ss.hasPermission('bpm:task-assign-rule:query')") +// @PreAuthorize("@ss.hasPermission('bpm:task-assign-rule:query')") public CommonResult> getTaskAssignRuleList( @RequestParam(value = "modelId", required = false) String modelId, @RequestParam(value = "processDefinitionId", required = false) String processDefinitionId) {