diff --git a/cv/user_cv/bag.go b/cv/user_cv/bag.go index 0c035191f6955f3917c2fe0b517d0c88b756f5be..7af3718ed7896f578103620ea894eafbdc2fc6ad 100644 --- a/cv/user_cv/bag.go +++ b/cv/user_cv/bag.go @@ -2,16 +2,15 @@ package user_cv import ( "git.hilo.cn/hilo-common/resource/mysql" - "hilo-user/_const/enum/res_e" ) type UserBag struct { - ResType res_e.ResUserBag `json:"resType"` // 道具类型 1:礼物道具 - ResId mysql.ID `json:"resId"` // 道具资源id - Name string `json:"name"` // 资源名称 - DiamondNum mysql.Num `json:"diamondNum"` // 钻石数量 - IconUrl string `json:"iconUrl"` // icon url - SvgaUrl string `json:"svgaUrl"` // svga url - Count mysql.Num `json:"count"` // 拥有数量 - RemainDays int `json:"remainDays"` // 有效天数 + ResType mysql.Type `json:"resType"` // 道具类型 1:礼物道具 + ResId mysql.ID `json:"resId"` // 道具资源id + Name string `json:"name"` // 资源名称 + DiamondNum mysql.Num `json:"diamondNum"` // 钻石数量 + IconUrl string `json:"iconUrl"` // icon url + SvgaUrl string `json:"svgaUrl"` // svga url + Count mysql.Num `json:"count"` // 拥有数量 + RemainDays int `json:"remainDays"` // 有效天数 } diff --git a/route/user_r/bag.go b/route/user_r/bag.go index 0819421cbe6b8cf58afdedf8dd9a1a91fea64b41..a99690af41de040593696a087a7395f75da8b9e1 100644 --- a/route/user_r/bag.go +++ b/route/user_r/bag.go @@ -17,7 +17,7 @@ import ( // @Tags 用户背包 // @Summary 获取用户的铭牌 -// @Param column path int true "分栏:1 礼物" +// @Param resType path int true "分栏:1 礼物" // @Success 200 {object} []user_cv.UserBag // @Router /v1/user/bag/{resType} [get] func UserBag(c *gin.Context) (*mycontext.MyContext, error) {