package controller import ( . "app.yhyue.com/moapp/jybase/api" "context" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/ghttp" ) // OrderVipGives 获取VIP订阅赠品配置 func OrderVipGives(r *ghttp.Request) { vipGiving := make(map[string][]int) g.Cfg().MustGet(context.Background(), "vipGiving").Scan(&vipGiving) r.Response.WriteJson(NewResult(vipGiving, nil)) }