-
Notifications
You must be signed in to change notification settings - Fork 48
v2.x 数据库 玩家数据 用户
eeg1412 edited this page Apr 12, 2020
·
4 revisions
字段名 | 描述 | 类型 |
---|---|---|
_id | mongodb自动生成的ID | ObjectId |
玩家邮箱地址 | String | |
md5 | 玩家邮箱的MD5(主要用于头像) | String |
nickName | 玩家昵称 | String |
password | 玩家名密码(MD5) | String |
dailyCard | 每日抽卡的次数 | Int32 |
dailyCardTime | 每日抽卡的时间戳 | Int64 |
score | 玩家竞技点 | Int32 |
level | 玩家等级 | Int32 |
exp | 玩家经验值 | Int32 |
battleStamp | 对战的时间戳 | Int64 |
battleHitStamp | 对战被他人搜索到的时间戳 | Int64 |
battleDailyCount | 对战机会 | Int32 |
battleCard | 对战卡牌 | Array |
battled | 本月是否对战过 | Boolean |
deminingStamp | 铜银金镐的时间戳(下次使用的时间戳) | Array[Int64,Int64,Int64] |
deminingStarCount | 累计挖到了多少星星 | Int64 |
card | 已获得的卡牌列表 | Document{ packageID{ cardID:Int32 } } |
cardIndexCount | 一共获得了多少种卡牌 | Int32 |
UCC | 累计制了多少种卡牌 | Int32 |
guessCardCount | 在猜卡中一共猜中了多少张卡牌 | Int64 |
guessStamp | 猜卡时间戳 | Int64 |
guessDailyCount | 今天猜了多少次卡(主要用于第一次猜卡免费后面按照次数不同价格) | Int32 |
questCount | 任务完成次数 | Int64 |
questTreasure | 完成30次任务的奖励领取次数 | Int64 |
token | 验证token | String |
ip | 玩家IP | String |
robotRate | 玩家机器人可疑率 | Int32 |
setRobotRate | 手动设置的机器人可疑率 | Int32 |
robotCheckTime | 机器人检测的时间戳 | Int64 |
robotCheck | 机器人检测的状态 | Boolean |
captchaLock | 验证码是否已经通过,防止通过验证码后重复多次弹出验证码 | Boolean |
ban | 账号状态是否被封号(0不封号 1永久封号) | Int32 |