diff --git a/internal/logic/gameAct/gameAct.go b/internal/logic/gameAct/gameAct.go index d77f498..d7c35b5 100644 --- a/internal/logic/gameAct/gameAct.go +++ b/internal/logic/gameAct/gameAct.go @@ -9,7 +9,6 @@ import ( service2 "github.com/ayflying/utility_go/service" "github.com/ayflying/utility_go/tools" "github.com/gogf/gf/v2/container/gset" - "github.com/gogf/gf/v2/container/gvar" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gctx" "github.com/gogf/gf/v2/os/gtime" @@ -64,11 +63,8 @@ func (s *sGameAct) Info(uid int64, actId int) (data *g.Var, err error) { Uid: uid, ActId: actId, }).Fields("action").OrderDesc("updated_at").Value() - //getDb.Scan(&data) - if getDb == nil || getDb.IsEmpty() { - return - } - data = gvar.New(getDb) + getDb.Scan(&data) + if data == nil || data.IsEmpty() { return }