pay.proto 549 B

12345678910111213141516171819202122232425
  1. // 支付相关接口
  2. syntax = "proto3";
  3. package ticket.service.sales.v1;
  4. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  5. option go_package = "v1";
  6. option (gogoproto.goproto_getters_all) = false;
  7. option (gogoproto.goproto_stringer_all) = false;
  8. option (gogoproto.stringer_all) = true;
  9. service Pay {
  10. rpc PayNotify (PayNotifyRequest) returns (PayNotifyResponse);
  11. }
  12. message PayNotifyRequest {
  13. string msgID = 1 [(gogoproto.customname) = "MsgID"];
  14. string msgContent = 2;
  15. bool testMode = 3;
  16. }
  17. message PayNotifyResponse {
  18. }