mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-23 19:20:24 +08:00
实现用户系统手机号码绑定和登录(商业版)
This commit is contained in:
@@ -11,10 +11,11 @@ message User {
|
||||
int64 id = 1; // 用户ID
|
||||
string username = 2; // 用户名
|
||||
string fullname = 3; // 全称
|
||||
string mobile = 4;
|
||||
string tel = 5;
|
||||
string email = 6;
|
||||
string verifiedEmail = 20;
|
||||
string mobile = 4; // 手机号码
|
||||
string tel = 5; // 联系电话
|
||||
string email = 6; // 联系邮箱
|
||||
string verifiedEmail = 20; // 已验证邮箱
|
||||
string verifiedMobile = 23; // 已验证手机号码
|
||||
string remark = 7;
|
||||
bool isOn = 8;
|
||||
int64 createdAt = 9;
|
||||
@@ -23,8 +24,8 @@ message User {
|
||||
bool isRejected = 14;
|
||||
string rejectReason = 15;
|
||||
bool isDeleted = 16;
|
||||
bool isIndividualIdentified = 17;
|
||||
bool isEnterpriseIdentified = 18;
|
||||
bool isIndividualIdentified = 17; // 是否已通过个人验证
|
||||
bool isEnterpriseIdentified = 18; // 是否已通过企业验证
|
||||
string bandwidthAlgo = 21; // 带宽算法
|
||||
string lang = 22; // 语言代号
|
||||
|
||||
|
||||
16
pkg/rpc/protos/models/model_user_mobile_verification.proto
Normal file
16
pkg/rpc/protos/models/model_user_mobile_verification.proto
Normal file
@@ -0,0 +1,16 @@
|
||||
syntax = "proto3";
|
||||
option go_package = "./pb";
|
||||
|
||||
package pb;
|
||||
|
||||
// 手机号码认证
|
||||
message UserMobileVerification {
|
||||
int64 id = 1; // ID
|
||||
string mobile = 2; // 手机号码
|
||||
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