|
@@ -42,7 +42,7 @@ type SendMsgRequest struct {
|
|
|
Content string `protobuf:"bytes,6,opt,name=content,proto3" json:"content,omitempty"` //内容
|
|
|
MsgType int64 `protobuf:"varint,7,opt,name=msgType,proto3" json:"msgType,omitempty"` //消息类型 1:客服 2:系统通知 3:营销 4:用户会话
|
|
|
Link string `protobuf:"bytes,8,opt,name=link,proto3" json:"link,omitempty"` //跳转链接
|
|
|
- CiteId string `protobuf:"bytes,9,opt,name=citeId,proto3" json:"citeId,omitempty"` //引用id
|
|
|
+ CiteId int64 `protobuf:"varint,9,opt,name=citeId,proto3" json:"citeId,omitempty"` //引用id
|
|
|
Appid string `protobuf:"bytes,10,opt,name=appid,proto3" json:"appid,omitempty"` //应用标识
|
|
|
}
|
|
|
|
|
@@ -134,11 +134,11 @@ func (x *SendMsgRequest) GetLink() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *SendMsgRequest) GetCiteId() string {
|
|
|
+func (x *SendMsgRequest) GetCiteId() int64 {
|
|
|
if x != nil {
|
|
|
return x.CiteId
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
func (x *SendMsgRequest) GetAppid() string {
|
|
@@ -286,7 +286,7 @@ var file_message_proto_rawDesc = []byte{
|
|
|
0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03,
|
|
|
0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x6e,
|
|
|
0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x6e, 0x6b, 0x12, 0x16, 0x0a,
|
|
|
- 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63,
|
|
|
+ 0x06, 0x63, 0x69, 0x74, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
|
|
|
0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x0a,
|
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x5f, 0x0a, 0x17, 0x43,
|
|
|
0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
|