From 888a08e0f808fd37e7a487ea16735815311f81c0 Mon Sep 17 00:00:00 2001 From: xcx Date: Fri, 10 Apr 2020 16:34:12 +0800 Subject: [PATCH] bugfix --- api/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/api.go b/api/api.go index babcfd4..e027ea5 100644 --- a/api/api.go +++ b/api/api.go @@ -69,8 +69,8 @@ type ProfileSetReq struct { ProfileItem []*ProfileSetReqItem `json:"ProfileItem"` } type ProfileSetReqItem struct { - Tag string `json:"tag"` - Value interface{} `json:"value"` + Tag string `json:"Tag"` + Value interface{} `json:"Value"` } type ProfileSetAns struct{}