1、新增 记录 进程搜索

2、增加未绑定分组搜索
3、缺失机器号提示
This commit is contained in:
2025-05-07 16:35:11 +08:00
parent f39069c9d7
commit 5d4274f216
34 changed files with 3461 additions and 139 deletions

24
common/enums/redis_key.go Normal file
View File

@ -0,0 +1,24 @@
package enums
const (
//设备进程白名单更新缓存 {machineId} t代表模板
MachineContentKey = "m_content:%s"
//设备进程白名单 {{machineId}} t代表模板
MachineContentUsedIdKey = "m_content_used_id:%s"
//设备应用程序白名单更新缓存 {machineId} t代表模板
MachineGroupKey = "m_group:%s"
//设备应用程序白名单 {{machineId}} t代表模板
MachineGroupUsedIdKey = "m_group_used_id:%s"
)
const (
//关键字缓存
Keywords = "keywords"
//设备更新关键字缓存 {machineId}
MachineKeywords = "m_keywords:%s"
)
const (
//系统配置缓存
Config = "config:%s"
)