Merge pull request 'BUG-20240316-0001-Robin' (#187) from BUG-20240316-0001-Robin into main
Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/187
This commit is contained in:
commit
c7ced3c1a4
|
@ -1129,11 +1129,6 @@ func (s *Service) ApiGetStreamerExtListFuzzilyByUserId(ctx *gin.Context, req *st
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Info("length of account_list : %v", len(accountList))
|
|
||||||
for _, item := range accountList {
|
|
||||||
logger.Info("user_id_string : %v", util.DerefString(item.UserIdString))
|
|
||||||
}
|
|
||||||
|
|
||||||
//2.将accountlist扩张为StreamerExts
|
//2.将accountlist扩张为StreamerExts
|
||||||
streamerExts := make([]streamerproto.StreamerExtVO, len(accountList))
|
streamerExts := make([]streamerproto.StreamerExtVO, len(accountList))
|
||||||
for i := range streamerExts {
|
for i := range streamerExts {
|
||||||
|
|
|
@ -25,7 +25,7 @@ type Account struct {
|
||||||
DevType *int32 `bson:"dev_type"` // 注册来源
|
DevType *int32 `bson:"dev_type"` // 注册来源
|
||||||
Latitude *float64 `bson:"latitude"` // 纬度
|
Latitude *float64 `bson:"latitude"` // 纬度
|
||||||
Longitude *float64 `bson:"longitude"` // 经度
|
Longitude *float64 `bson:"longitude"` // 经度
|
||||||
UserIdString *string `bson:"user_id_string"` // string型user_id,为模糊匹配设置
|
UserIdString *string `json:"user_id_string" bson:"user_id_string"` // string型user_id,为模糊匹配设置
|
||||||
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
|
||||||
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
|
||||||
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记,0-否,1-是
|
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记,0-否,1-是
|
||||||
|
|
Loading…
Reference in New Issue