From 27ff2e7b72caf5c783330b79941f30130dbaa9f7 Mon Sep 17 00:00:00 2001 From: Rogee Date: Mon, 12 May 2025 21:52:26 +0800 Subject: [PATCH] feat: update --- backend/app/http/users.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/http/users.go b/backend/app/http/users.go index 5c56e11..046d3ed 100644 --- a/backend/app/http/users.go +++ b/backend/app/http/users.go @@ -18,7 +18,7 @@ type UserInfo struct { CreatedAt time.Time `json:"created_at,omitempty"` Username string `json:"username,omitempty"` Avatar string `json:"avatar,omitempty"` - Balance int64 `json:"balance,omitempty"` + Balance int64 `json:"balance"` } // @Router /users/profile [get]