fix: 修复 Gateway 流量卡接口路径、响应模型和时间戳与上游文档不一致

- 时间戳从 UnixMilli (13位) 改为 Unix (10位秒级)
- 实名状态接口路径 /realname-status → /realName
- 实名链接接口路径 /realname-link → /RealNameVerification
- RealnameStatusResp: status string → realStatus bool + iccid
- FlowUsageResp: usedFlow int64 → used float64 + iccid
- RealnameLinkResp: link → url
This commit is contained in:
2026-03-07 11:29:34 +08:00
parent 51ee38bc2e
commit a83dca2eb2
3 changed files with 9 additions and 10 deletions

View File

@@ -58,7 +58,7 @@ func (c *Client) QueryRealnameStatus(ctx context.Context, req *CardStatusReq) (*
},
}
resp, err := c.doRequest(ctx, "/flow-card/realname-status", businessData)
resp, err := c.doRequest(ctx, "/flow-card/realName", businessData)
if err != nil {
return nil, err
}
@@ -109,7 +109,7 @@ func (c *Client) GetRealnameLink(ctx context.Context, req *CardStatusReq) (*Real
},
}
resp, err := c.doRequest(ctx, "/flow-card/realname-link", businessData)
resp, err := c.doRequest(ctx, "/flow-card/RealNameVerification", businessData)
if err != nil {
return nil, err
}