用户实现OTP登录

This commit is contained in:
刘祥超
2022-07-24 16:45:07 +08:00
parent a4b68cd21c
commit 41ea2d0dda
7 changed files with 3406 additions and 3172 deletions

View File

@@ -5,6 +5,7 @@ package pb;
import "models/model_node_cluster.proto";
import "models/model_user_feature.proto";
import "models/model_login.proto";
message User {
int64 id = 1;
@@ -24,6 +25,8 @@ message User {
bool isIndividualIdentified = 17;
bool isEnterpriseIdentified = 18;
Login otpLogin = 19; // OTP认证
NodeCluster nodeCluster = 10;
repeated UserFeature features = 11;
}