Skip to content
Open

fix #25

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
302 changes: 302 additions & 0 deletions common/idl/domain/msg/msg_dto.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions common/idl/domain/msg/msg_dto.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
syntax = "proto3";

option go_package = "common/idl/domain/msg";
//protoc --go-grpc_out=. --go_out=. ./common/idl/domain/msg/msg_dto.proto
package msg;

message msgDTO {
string sendID = 1;
string recvID = 2;
string groupID = 3;
string clientMsgID = 4;
string ServerMsgID = 5;
int32 senderPlatformID = 6;
string senderNickname = 7;
string senderFaceURL = 8;
int32 sessionType = 9;
int32 msgFrom = 10;
int32 ContentType = 11;
bytes Content = 12;
int64 Seq = 13;
int64 SendTime = 14;
int64 CreateTime = 15;
int32 Status = 16;
bool IsRead = 17;
}
Loading