12 lines
216 B
Protocol Buffer
12 lines
216 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
|
|
message OrderDetailControlResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
optional int32 _RetCode = 2;
|
|
optional string _RetMsg = 3;
|
|
}
|