Skip to content

Commit

Permalink
fix(189pc): FamilyID range overflow (#6427 close #6426)
Browse files Browse the repository at this point in the history
  • Loading branch information
meozky authored May 9, 2024
1 parent 5f28532 commit 2313213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/189pc/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down

0 comments on commit 2313213

Please sign in to comment.