mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 11:07:40 +08:00
31 lines
666 B
Protocol Buffer
31 lines
666 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package channel;
|
|
|
|
option go_package = "pb/channel;channel";
|
|
|
|
import "pb/channel/common.proto";
|
|
import "pb/msg/msg.proto";
|
|
|
|
message DF62ReqBody {
|
|
optional ChannelMsgContent msg = 1;
|
|
}
|
|
|
|
message DF62RspBody {
|
|
optional uint32 result = 1;
|
|
optional bytes errmsg = 2;
|
|
optional uint32 sendTime = 3;
|
|
optional ChannelMsgHead head = 4;
|
|
optional uint32 errType = 5;
|
|
optional TransSvrInfo transSvrInfo = 6;
|
|
optional ChannelFreqLimitInfo freqLimitInfo = 7;
|
|
optional msg.MessageBody body = 8;
|
|
}
|
|
|
|
message TransSvrInfo {
|
|
optional uint32 subType = 1;
|
|
optional int32 retCode = 2;
|
|
optional bytes errMsg = 3;
|
|
optional bytes transInfo = 4;
|
|
}
|