Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package service
import (
"context"
"go-common/app/admin/main/tv/model"
"go-common/library/log"
"github.com/jinzhu/gorm"
)
//UserInfo select user info by mid
func (s *Service) UserInfo(c context.Context, mid int64) (userInfo *model.TvUserInfoResp, err error) {
if userInfo, err = s.dao.GetByMId(c, mid); err != nil {
if err == gorm.ErrRecordNotFound {
return nil, nil
}
log.Error("UserInfo (%v) error(%v)", userInfo, err)
return
}
return
}