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 dao
import (
"context"
"go-common/app/admin/main/tv/model"
"go-common/library/log"
)
const (
_userTableName = "tv_user_info"
)
// GetByMId select user info by mid
func (d *Dao) GetByMId(c context.Context, mid int64) (userInfo *model.TvUserInfoResp, err error) {
userInfo = &model.TvUserInfoResp{}
if err = d.DB.Table(_userTableName).Where("mid = ?", mid).First(userInfo).Error; err != nil {
log.Error("GetByMId (%v) error(%v)", mid, err)
}
return
}