refactor: remove xinda from default production surface

This commit is contained in:
lingniu
2026-07-01 02:13:43 +08:00
parent 18ebd6c84f
commit f0c1983867
5 changed files with 19 additions and 30 deletions

View File

@@ -44,11 +44,11 @@ public final class LocationHistoryController {
summary = "查询车辆位置历史",
description = "按协议、车辆标识和时间范围查询 TDengine 位置点。分页使用 cursorTs + cursorId不使用 offset。")
public LocationPageResponse locations(
@Parameter(description = "协议名,例如 GB32960、JT808、MQTT_YUTONG、XINDA_PUSH", required = true, example = "MQTT_YUTONG")
@Parameter(description = "协议名,例如 GB32960、JT808、MQTT_YUTONG。", required = true, example = "MQTT_YUTONG")
@RequestParam String protocol,
@Parameter(description = "内部车辆键。传入后优先使用。", example = "LMRKH9AC2R1004087")
@RequestParam(required = false) String vehicleKey,
@Parameter(description = "VIN。GB32960、宇通、信达通常可直接用 VIN。", example = "LMRKH9AC2R1004087")
@Parameter(description = "VIN。GB32960、宇通通常可直接用 VIN。", example = "LMRKH9AC2R1004087")
@RequestParam(required = false) String vin,
@Parameter(description = "JT808 终端手机号或终端标识JT808 会自动映射为 jt808:<phone>。", example = "g7gps")
@RequestParam(required = false) String phone,

View File

@@ -57,7 +57,7 @@ public final class RawFrameHistoryController {
description = "按 protocol、vehicleKey、VIN、phone、messageId、parseStatus 和时间范围查询 TDengine raw_frames。"
+ "返回 metadataJson 与 rawUri分页使用 cursorTs + cursorId。")
public RawFramePageResponse rawFrames(
@Parameter(description = "协议类型,例如 GB32960、JT808、MQTT_YUTONG、XINDA_PUSH", example = "JT808")
@Parameter(description = "协议类型,例如 GB32960、JT808、MQTT_YUTONG。", example = "JT808")
@RequestParam String protocol,
@Parameter(description = "内部车辆键;传入后精确过滤 vehicle_key。", example = "jt808:g7gps")
@RequestParam(required = false) String vehicleKey,