wfz 3 жил өмнө
parent
commit
59102b346d

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

@@ -4034,7 +4034,7 @@ type RecommendPersonInfo struct {
 	sizeCache     protoimpl.SizeCache
 	unknownFields protoimpl.UnknownFields
 
-	PersonId       string   `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`              // 查询目标的ID
+	PersonID       string   `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"`              // 查询目标的ID
 	PersonType     string   `protobuf:"bytes,2,opt,name=personType,proto3" json:"personType"`          // 类型
 	Nickname       string   `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname"`              // 昵称
 	AvatarUrl      string   `protobuf:"bytes,4,opt,name=avatarUrl,proto3" json:"avatarUrl"`            // 头像链接
@@ -4082,9 +4082,9 @@ func (*RecommendPersonInfo) Descriptor() ([]byte, []int) {
 	return file_common_proto_rawDescGZIP(), []int{57}
 }
 
-func (x *RecommendPersonInfo) GetPersonId() string {
+func (x *RecommendPersonInfo) GetPersonID() string {
 	if x != nil {
-		return x.PersonId
+		return x.PersonID
 	}
 	return ""
 }
@@ -4716,8 +4716,8 @@ var file_common_proto_rawDesc = []byte{
 	0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
 	0x22, 0x95, 0x03, 0x0a, 0x13, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65,
 	0x72, 0x73, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73,
-	0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
-	0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
+	0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
+	0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79,
 	0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
 	0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
 	0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,

+ 1 - 1
api/common/common.proto

@@ -408,7 +408,7 @@ message RecommendPersonListReply{
 }
 
 message RecommendPersonInfo{
-  string personId = 1; // 查询目标的ID
+  string personID = 1; // 查询目标的ID
   string personType = 2; // 类型
   string nickname = 3;// 昵称
   string avatarUrl =4;// 头像链接

+ 1 - 1
js/api/common/common_pb.ts

@@ -521,7 +521,7 @@ export interface RecommendPersonListReply{
 }
 export interface RecommendPersonInfo{
     /**  查询目标的ID */
-    personId?:string;
+    personID?:string;
     /**  类型 */
     personType?:string;
     /**  昵称 */