|
|
@ -170,30 +170,51 @@ message UserInDepartment {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////base end/////////////////////////////////////
|
|
|
|
///////////////////////////////////base end/////////////////////////////////////
|
|
|
|
|
|
|
|
message PullMessageBySeqListReq{
|
|
|
|
|
|
|
|
string userID = 1;
|
|
|
|
|
|
|
|
string operationID = 2;
|
|
|
|
|
|
|
|
repeated uint32 seqList = 3;
|
|
|
|
|
|
|
|
map <string, seqList>groupSeqList = 4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
message seqList {
|
|
|
|
|
|
|
|
repeated uint32 seqList = 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
message MsgDataList {
|
|
|
|
|
|
|
|
repeated MsgData msgDataList = 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message PullMessageBySeqListResp {
|
|
|
|
message PullMessageBySeqListResp {
|
|
|
|
int32 errCode = 1;
|
|
|
|
int32 errCode = 1;
|
|
|
|
string errMsg = 2;
|
|
|
|
string errMsg = 2;
|
|
|
|
repeated MsgData list = 3;
|
|
|
|
repeated MsgData list = 3;
|
|
|
|
|
|
|
|
map<string, MsgDataList> groupMsgDataList = 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
message PullMessageBySeqListReq{
|
|
|
|
|
|
|
|
string userID = 1;
|
|
|
|
|
|
|
|
string operationID = 2;
|
|
|
|
|
|
|
|
repeated uint32 seqList = 3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
message GetMaxAndMinSeqReq {
|
|
|
|
message GetMaxAndMinSeqReq {
|
|
|
|
|
|
|
|
repeated string groupIDList = 1;
|
|
|
|
|
|
|
|
string userID = 2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
message MaxAndMinSeq{
|
|
|
|
|
|
|
|
uint32 maxSeq = 1;
|
|
|
|
|
|
|
|
uint32 minSeq = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
message GetMaxAndMinSeqResp {
|
|
|
|
message GetMaxAndMinSeqResp {
|
|
|
|
uint32 maxSeq = 1;
|
|
|
|
uint32 maxSeq = 1;
|
|
|
|
uint32 minSeq = 2;
|
|
|
|
uint32 minSeq = 2;
|
|
|
|
|
|
|
|
map<string, MaxAndMinSeq> groupMaxAndMinSeq = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message UserSendMsgResp {
|
|
|
|
message UserSendMsgResp {
|
|
|
|
string serverMsgID = 1;
|
|
|
|
string serverMsgID = 1;
|
|
|
|
string clientMsgID = 2;
|
|
|
|
string clientMsgID = 2;
|
|
|
|
int64 sendTime = 3;
|
|
|
|
int64 sendTime = 3;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
message MsgData {
|
|
|
|
message MsgData {
|
|
|
|
string sendID = 1;
|
|
|
|
string sendID = 1;
|
|
|
|
string recvID = 2;
|
|
|
|
string recvID = 2;
|
|
|
|