1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import "client2world_msg_type.proto";
- import "msg_type_def.proto";
- import "msg_info_def.proto";
- package client2world_protocols;
- // 请求绑定手机
- message packetc2w_req_bind_phone
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_bind_phone];
- // 手机号
- optional string phone = 2;
- //1普通绑定 2vip绑定
- optional int32 bindType = 3;
- optional string newPwd = 4;
- optional string name = 5;
- optional string QQ = 6;
- }
- // 请求绑定手机结果
- message packetw2c_req_bind_phone_result
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_bind_phone_result];
- optional int32 result = 2;
- optional int32 bindType = 3;
- }
-
- // 请求验证
- message packetc2w_req_verify_code
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_verify_code];
- // 验证码
- optional string code = 2;
- }
- // 请求验证结果
- message packetw2c_req_verify_code_result
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_verify_code_result];
- optional int32 result = 2;
- }
- // 请求验证身份证
- message packetc2w_req_verify_id_card
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_c2w_req_verify_id_card];
- // 真实姓名
- optional string name = 2;
- // 身份证号
- optional string idnumber = 3;
- }
- // 请求验证身份证结果
- message packetw2c_req_verify_id_card_result
- {
- optional e_server_msg_type packet_id = 1 [default = e_mst_w2c_req_verify_id_card_result];
- optional int32 result = 2;
- }
|