fix: some api bug

This commit is contained in:
wwweww
2026-03-31 22:12:06 +08:00
parent c5ff4f0216
commit e7970ac25f
219 changed files with 16195 additions and 2126 deletions
+13 -13
View File
@@ -112,7 +112,7 @@ message Players {
repeated int64 games = 9; //games
int64 createdAt = 10; //createdAt
int64 updatedAt = 11; //updatedAt
int64 gender = 12; //gender
bool gender = 12; //gender
}
message AddPlayersReq {
@@ -166,20 +166,20 @@ message GetPlayersByIdResp {
}
message SearchPlayersReq {
int64 page = 1; //page
int64 limit = 2; //limit
int64 id = 3; //id
int64 userId = 4; //userId
string status = 5; //status
double rating = 6; //rating
int64 totalOrders = 7; //totalOrders
int64 completedOrders = 8; //completedOrders
int64 shopId = 9; //shopId
optional int64 page = 1; //page
optional int64 limit = 2; //limit
optional int64 id = 3; //id
optional int64 userId = 4; //userId
optional string status = 5; //status
optional double rating = 6; //rating
optional int64 totalOrders = 7; //totalOrders
optional int64 completedOrders = 8; //completedOrders
optional int64 shopId = 9; //shopId
repeated string tags = 10; //tags
repeated int64 games = 11; //games
int64 createdAt = 12; //createdAt
int64 updatedAt = 13; //updatedAt
int64 gender = 14; //gender
optional int64 createdAt = 12; //createdAt
optional int64 updatedAt = 13; //updatedAt
optional int64 gender = 14; //gender
}
message SearchPlayersResp {