wfz 3 jaren geleden
bovenliggende
commit
82335bc159
3 gewijzigde bestanden met toevoegingen van 3 en 3 verwijderingen
  1. 1 1
      api/common/common.pb.go
  2. 1 1
      api/common/common.proto
  3. 1 1
      js/api/common/common_pb.ts

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

@@ -2875,7 +2875,7 @@ type RandomNumAndSex struct {
 	unknownFields protoimpl.UnknownFields
 
 	Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 随机的数量
-	Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
+	Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 对方的性别
 }
 
 func (x *RandomNumAndSex) Reset() {

+ 1 - 1
api/common/common.proto

@@ -294,7 +294,7 @@ message RandomNum {
 
 message RandomNumAndSex {
   int64 num = 1; // 随机的数量
-  int64 sex = 2; // 性别
+  int64 sex = 2; // 对方的性别
 }
 
 message MemeRequest{

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

@@ -363,7 +363,7 @@ export interface RandomNum{
 export interface RandomNumAndSex{
     /**  随机的数量 */
     num?:number;
-    /**  性别 */
+    /**  对方的性别 */
     sex?:number;
 }
 export interface MemeRequest{