Compare commits

...

4 Commits

Author SHA1 Message Date
15d4b450b6 chore(auth):临时注释权限校验注解
- 注释了任务分配规则查询接口的权限校验注解- 保留了原有的参数校验逻辑
- 为后续权限配置调整做准备
2025-10-31 17:52:27 +08:00
90c00ebe32 feat(sql): 更新数据库同步标记表- 在 z_exec_last.sql 中添加多个新表名到 IS_DB_SYNC 更新列表
- 新增 lc_drill_plan, lc_confined_space_operation 等共 10个表
- 创建新的 z_exec_last.sql 文件以执行相同的更新逻辑
- 确保所有相关表的 IS_DB_SYNC 字段被正确设置为 'N'
2025-10-31 16:48:41 +08:00
a873c208f6 Merge remote-tracking branch 'origin/dev' into dev 2025-10-31 16:32:01 +08:00
7f45779465 工作流 自选审批人提交 2025-10-31 16:31:34 +08:00
15 changed files with 5953 additions and 2 deletions

View File

@@ -2,5 +2,9 @@ update "LOWCODE_FRAME"."LOWCODE_DBFORM"
set IS_DB_SYNC='N' set IS_DB_SYNC='N'
where TABLE_NAME in ( where TABLE_NAME in (
'lc_item_result', 'lc_training_plan', 'lc_training_record', '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'
); );

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

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 = "modelId", description = "模型编号", example = "1024"),
@Parameter(name = "processDefinitionId", description = "流程定义的编号", example = "2048") @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( public CommonResult<List<BpmTaskAssignRuleRespVO>> getTaskAssignRuleList(
@RequestParam(value = "modelId", required = false) String modelId, @RequestParam(value = "modelId", required = false) String modelId,
@RequestParam(value = "processDefinitionId", required = false) String processDefinitionId) { @RequestParam(value = "processDefinitionId", required = false) String processDefinitionId) {