1、实现操作日志获取userip并发送

2、增加createCommandsTest 为了生成测试指令
3、事件类型增加用户部门、动作校验。在字典表中为每个事件类型增加了支持的部门code和动作
This commit is contained in:
PushM
2024-06-22 18:15:02 +08:00
parent 394b59271e
commit 8ed4903ae3
8 changed files with 116 additions and 7 deletions

View File

@@ -124,4 +124,8 @@ public interface TaskMapper {
@Update("UPDATE t_task SET task_start_time = NOW() WHERE task_id = #{taskId}")
void updateTaskStartTime(Long taskId);
String queryEventTypeDepartment(String eventType);
String queryEventTypeAct(String eventType);
}