WeChatHelper/MMPro/micromsg/proto/PreSubmitOrderResponse.proto
2024-06-11 08:43:45 +08:00

19 lines
439 B
Protocol Buffer

syntax = "proto2";
package MMPro.micromsg;
import "BaseResponse.proto";
import "Express.proto";
import "ActionAttr.proto";
message PreSubmitOrderResponse {
optional BaseResponse _BaseResponse = 1;
optional uint32 _ExpressCount = 2;
repeated Express _Express = 3;
optional string _LockId = 4;
optional int32 _RetCode = 5;
optional string _RetMsg = 6;
repeated ActionAttr _ActionAttrs = 7;
optional uint32 _ActionAttrCount = 8;
}