mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-09 08:40:25 +08:00
初步完成用户电子邮箱绑定(激活)
This commit is contained in:
16
pkg/rpc/protos/models/model_user_email_verification.proto
Normal file
16
pkg/rpc/protos/models/model_user_email_verification.proto
Normal file
@@ -0,0 +1,16 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
// 电子邮箱认证
|
||||
message UserEmailVerification {
|
||||
int64 id = 1;
|
||||
string email = 2; // Email
|
||||
int64 userId = 3; // 用户ID
|
||||
string code = 4; // 代号
|
||||
int64 createdAt = 5; // 创建时间
|
||||
bool isSent = 6; // 已发送
|
||||
bool isVerified = 7; // 已激活
|
||||
int64 expiresAt = 8; // 过期时间,动态计算而来
|
||||
}
|
||||
Reference in New Issue
Block a user