rpc
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
462 B

3 years ago
  1. syntax = "proto3";
  2. package order;
  3. // 下单请求结构
  4. message CreateRequest {
  5. string data = 1;
  6. string time = 2;
  7. string sign = 3;
  8. }
  9. // 下单响应结构
  10. message CreateResponse {
  11. string data = 1; //订单号
  12. string time = 2;
  13. string sign = 3;
  14. }
  15. // rpc方法
  16. service OrderService {
  17. rpc create (CreateRequest) returns (CreateResponse); // 创建订单
  18. rpc createByCart (CreateRequest) returns (CreateResponse); // 创建订单
  19. }