Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
2025-11-04 11:47:17 +08:00
3 changed files with 16 additions and 2 deletions

View File

@@ -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'
);

View File

@@ -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'
);

View File

@@ -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<List<BpmTaskAssignRuleRespVO>> getTaskAssignRuleList(
@RequestParam(value = "modelId", required = false) String modelId,
@RequestParam(value = "processDefinitionId", required = false) String processDefinitionId) {