cim/doc/proto/js/Message.proto
远方夕阳 ffc6f89527 1.服务端springboot升级2.1.4,protobuf升级3.7.0
2.android sdk升级,适配android8.0+,修复一些之前的兼容性问题

2.消息的id字段名由mid修改为id,类型由String修改为long;
2019-04-18 16:47:02 +08:00

14 lines
278 B
Protocol Buffer

syntax = "proto3";
package com.farsunset.cim.sdk.web.model;
message Message {
int64 id = 1;
string action = 2;
string content = 3;
string sender = 4;
string receiver = 5;
string extra = 6;
string title = 7;
string format = 8;
int64 timestamp = 9;
}