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.
25 lines
549 B
25 lines
549 B
// 支付相关接口 |
|
|
|
syntax = "proto3"; |
|
package ticket.service.sales.v1; |
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto"; |
|
|
|
option go_package = "v1"; |
|
option (gogoproto.goproto_getters_all) = false; |
|
option (gogoproto.goproto_stringer_all) = false; |
|
option (gogoproto.stringer_all) = true; |
|
|
|
service Pay { |
|
rpc PayNotify (PayNotifyRequest) returns (PayNotifyResponse); |
|
} |
|
|
|
message PayNotifyRequest { |
|
string msgID = 1 [(gogoproto.customname) = "MsgID"]; |
|
string msgContent = 2; |
|
bool testMode = 3; |
|
} |
|
|
|
message PayNotifyResponse { |
|
|
|
}
|
|
|