Quellcode durchsuchen

回复小纸条备注

wfz vor 3 Jahren
Ursprung
Commit
b1e1b2cac9

+ 2 - 2
api/common/common.pb.go

@@ -4882,8 +4882,8 @@ type ReplyScripRequest struct {
 	PersonId         string   `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
 	PersonType       string   `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"`
 	PersonIdentifyId string   `protobuf:"bytes,3,opt,name=PersonIdentifyId,proto3" json:"PersonIdentifyId"`
-	ScripId          int64    `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"`
-	Message          *Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"`
+	ScripId          int64    `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
+	Message          *Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"`  // 回复内容
 	MsgType          string   `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
 }
 

+ 2 - 2
api/common/common.proto

@@ -496,8 +496,8 @@ message ReplyScripRequest {
   string personId = 1;
   string personType = 2;
   string PersonIdentifyId = 3;
-  int64 scripId = 4;
-  Message message = 5;
+  int64 scripId = 4; // 小纸条ID
+  Message message = 5; // 回复内容
   string msgType = 6;
 }
 

+ 2 - 2
api/user/user.pb.go

@@ -31,8 +31,8 @@ type ReplyScripRequest struct {
 	sizeCache     protoimpl.SizeCache
 	unknownFields protoimpl.UnknownFields
 
-	ScripId int64           `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"`
-	Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"`
+	ScripId int64           `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
+	Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"`  // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
 	MsgType string          `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
 }
 

+ 2 - 2
api/user/user.proto

@@ -413,8 +413,8 @@ service User {
 }
 
 message ReplyScripRequest {
-  int64 scripId = 4;
-  common.Message message = 5;
+  int64 scripId = 4;// 小纸条ID
+  common.Message message = 5;// 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
   string msgType = 6;
 }
 

+ 2 - 0
js/api/common/common_pb.ts

@@ -631,7 +631,9 @@ export interface ReplyScripRequest{
     personId?:string;
     personType?:string;
     PersonIdentifyId?:string;
+    /**  小纸条ID */
     scripId?:number;
+    /**  回复内容 */
     message?:Message;
     msgType?:string;
 }

+ 2 - 0
js/api/user/user_pb.ts

@@ -1,7 +1,9 @@
 import {Message} from "../common/common_pb";
 
 export interface ReplyScripRequest{
+    /**  小纸条ID */
     scripId?:number;
+    /**  回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接 */
     message?:Message;
     msgType?:string;
 }