refactor: reorganize modules and add Linux build tooling
This commit is contained in:
35
module/base/passport/proto/register.proto
Normal file
35
module/base/passport/proto/register.proto
Normal file
@@ -0,0 +1,35 @@
|
||||
syntax = "proto3";
|
||||
package passport;
|
||||
option go_package = ".;passport";
|
||||
import "blocks.proto";
|
||||
|
||||
// Passport-通行证模块-注册
|
||||
service Register{
|
||||
// 帐号密码注册
|
||||
rpc Pwd(RegisterRequest) returns (RegisterReply) {}
|
||||
|
||||
// 手机验证码注册
|
||||
rpc Code(RegisterRequest) returns (RegisterReply) {}
|
||||
}
|
||||
|
||||
|
||||
message RegisterRequest {
|
||||
string country = 1; // 国家码,eg CN US
|
||||
string email = 2; //邮箱
|
||||
string account = 3; //帐号
|
||||
string phone = 4; //手机号
|
||||
string password = 5; //密码
|
||||
string code = 6; //验证码
|
||||
int64 agency_id=7; // 代理ID
|
||||
int64 staff_id=8; // 工作人员ID
|
||||
int64 owner_id=9 [json_name="owner_id"];// 所属ID
|
||||
string owner_identity = 10 [json_name="owner_identity"];// 所属唯一码
|
||||
}
|
||||
|
||||
message RegisterReply {
|
||||
int64 id=1;
|
||||
string identity = 2; //用户唯一码
|
||||
string token = 4; //用户Header所需Token
|
||||
map<string, string> extend = 5; //扩展字段
|
||||
VerifyStatus verify_status = 6; // 用户验证状态
|
||||
}
|
||||
Reference in New Issue
Block a user