Skip to content

Commit

Permalink
fix(client): fix wrong data type (#725)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyjaysong authored Jul 13, 2023
1 parent fa2693f commit 5c2160f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ type RowAffected struct {
}

type Score struct {
Id string `json:"Id"`
Score int `json:"Score"`
Id string `json:"Id"`
Score float64 `json:"Score"`
}

type User struct {
Expand Down

0 comments on commit 5c2160f

Please sign in to comment.