20 lines
580 B
Protocol Buffer
20 lines
580 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
enum RES_CODE {
|
|
FAIL = 0;
|
|
SUCCESS = 1;
|
|
Protocol_Error_Account_Exist = 100;
|
|
Protocol_Error_Account_OR_PWD_ERROR = 101;
|
|
Protocol_Error_Account_OR_PWD_Short = 102;
|
|
Protocol_Error_Account_Fail = 103;
|
|
Protocol_Error_Account_NoExsit = 104;
|
|
Protocol_Error_Account_Code_Error = 105;
|
|
Protocol_Error_Account_Device_Error = 106;
|
|
Protocol_Error_Id_Not_Verify = 107;
|
|
Protocol_Error_Id_Verify_Error = 108;
|
|
}
|