From 2071758a2b24cc21521ec1888df7ddf60065e88f Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期六, 28 十月 2023 15:33:09 +0800 Subject: [PATCH] 新增用户信息更新管理器,定时更新活跃用户的详情,当用户访问系统的时候更新活跃时间,定时清理非活跃用户 --- proto/user.proto | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/proto/user.proto b/proto/user.proto index 50e32f3..83a93cc 100644 --- a/proto/user.proto +++ b/proto/user.proto @@ -14,7 +14,7 @@ string username = 2; int32 usertype = 3; string nickname = 4; - // ... other fields + repeated string sub_user_ids = 5; } message UserRequest { -- Gitblit v1.8.0