docs: align comments with tdengine history path

This commit is contained in:
lingniu
2026-07-01 04:06:41 +08:00
parent e97116202b
commit b36f993059
10 changed files with 13 additions and 13 deletions

View File

@@ -28,7 +28,7 @@ public final class VehicleStateController {
@GetMapping("/{vin}")
public ResponseEntity<String> state(@PathVariable String vin) {
// 查询的是 Redis 最新状态快照,不是 event-file-store 的历史 snapshot
// 查询的是 Redis 最新状态快照,不是历史明细库
return json(repository.getState(vin));
}