feat(database): add CRUD operations for parsed sessions and update session name functionality

This commit is contained in:
kever
2026-02-16 00:39:24 +08:00
parent 41814a2bc8
commit f0a26e31f9
18 changed files with 1119 additions and 1573 deletions

View File

@@ -35,3 +35,10 @@ type ParsedResult struct {
Items []interface{} `json:"items"`
Heroes []interface{} `json:"heroes"`
}
// ParsedSession 解析数据会话信息
type ParsedSession struct {
ID int64 `json:"id"`
SessionName string `json:"session_name"`
CreatedAt int64 `json:"created_at"`
}