重放工具:恢复全量查询,去掉测试日期过滤

main
haoliang 1 month ago
parent aace303692
commit 4a3acb5d58

@ -41,7 +41,7 @@ namespace CncReplay
conn.Open();
logs = conn.Query<LogEntry>(
"SELECT id AS Id, request_time AS RequestTime, raw_json AS RawJson, collect_address_id AS CollectAddressId " +
"FROM log_collect_raw WHERE is_success = 1 AND DATE(request_time) IN ('2026-05-13','2026-05-14','2026-05-15') ORDER BY request_time ASC").AsList();
"FROM log_collect_raw WHERE is_success = 1 ORDER BY request_time ASC").AsList();
}
if (logs.Count == 0)

Loading…
Cancel
Save