BUG-20240316-0001-Robin #187

Merged
chenhao merged 2 commits from BUG-20240316-0001-Robin into main 2024-03-17 00:42:53 +08:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 776f52c177 - Show all commits

View File

@ -25,7 +25,7 @@ type Account struct {
DevType *int32 `bson:"dev_type"` // 注册来源
Latitude *float64 `bson:"latitude"` // 纬度
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"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记0-否1-是