1、动态任务增加发送指令下发信号

2、动态规则批量删除增加使用中判断
3、静态规则返回字段为‘’自动处理为null
4、修复防护对象查询返回ip没有转为ip格式错误
This commit is contained in:
PushM
2024-06-09 00:09:16 +08:00
parent b463a4fe3e
commit 0523eb790b
3 changed files with 12 additions and 4 deletions

View File

@@ -116,7 +116,7 @@ public interface TaskMapper {
List<Task> queryHistory(Long id, Integer page, Integer pageSize);
@Select("SELECT task_id FROM t_task WHERE task_start_time >= NOW() " +
@Select("SELECT task_id FROM t_task WHERE task_start_time <= NOW() " +
"AND task_status = #{stateNum} AND task_audit_status = #{AuditNum}")
List<Long> queryRunnableTasks(Integer stateNum, Integer AuditNum);