From 2313213f599795a0b4a8c5a0930fb7653dfaaaa6 Mon Sep 17 00:00:00 2001 From: meozky <19809896+meozky@users.noreply.github.com> Date: Thu, 9 May 2024 14:23:12 +0800 Subject: [PATCH] fix(189pc): `FamilyID` range overflow (#6427 close #6426) --- drivers/189pc/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/189pc/types.go b/drivers/189pc/types.go index a1b3810f..2e9ed4c2 100644 --- a/drivers/189pc/types.go +++ b/drivers/189pc/types.go @@ -143,7 +143,7 @@ type FamilyInfoListResp struct { type FamilyInfoResp struct { Count int `json:"count"` CreateTime string `json:"createTime"` - FamilyID int `json:"familyId"` + FamilyID int64 `json:"familyId"` RemarkName string `json:"remarkName"` Type int `json:"type"` UseFlag int `json:"useFlag"`