军团:添加在线离线时间

This commit is contained in:
luying
2021-01-26 19:39:27 +08:00
parent f47666684f
commit 9190725ab3
8 changed files with 45 additions and 27 deletions

View File

@@ -79,7 +79,7 @@ export default class UserGuildApply extends BaseModel {
const list: UserGuildApplyType[] = await UserGuildApplyModel.find(condition)
.sort({ createdAt: -1 })
.select('applyCode role')
.populate('role', 'roleId roleName ce headHid sHid lv title job loginTime', 'Role')
.populate('role', 'roleId roleName ce headHid sHid lv title job quitTime', 'Role')
.limit(GUILD_PER_PAGE).lean();
return list
}