feat: sale manager

This commit is contained in:
zzw
2026-08-28 10:49:09 +08:00
parent 97eba7ad48
commit 6f567319be
82 changed files with 4491 additions and 182 deletions
+18
View File
@@ -17,6 +17,16 @@ service Chore {
body: "*"
};
}
rpc DecryptMobile(DecryptMobileReq) returns (Response) {
option (google.api.http) = {
get: "/api/v3/chore/decrypt/mobile"
};
}
rpc Regions(RegionsReq) returns (Response) {
option (google.api.http) = {
get: "/api/v3/chore/regions"
};
}
}
message Response {
@@ -33,4 +43,12 @@ message TestReq {
int32 id = 1;
repeated int64 ids = 2;
uint32 number = 3;
}
message DecryptMobileReq {
string origin_mobile = 1;
}
message RegionsReq {
int32 parent_id = 1;
}