fix(189pc): FamilyID range overflow (#6427 close #6426)

This commit is contained in:
meozky 2024-05-09 14:23:12 +08:00 committed by GitHub
parent 5f28532423
commit 2313213f59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"`