采购管理员接口远程调用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
353 B

syntax = "proto3";
package adminrpc;
// 信息请求结构
message Request {
string data = 1;
string time = 2;
string sign = 3;
}
// 信息响应结构
message Response {
string data = 1;
string time = 2;
string sign = 3;
}
// rpc方法
service AdminService {
rpc getByToken (Request) returns (Response); // 使用token查询用户
}