address add bystoreid api

This commit is contained in:
2026-08-27 16:54:51 +08:00
parent fa412d46ca
commit 433a17140c
15 changed files with 596 additions and 145 deletions
+11 -1
View File
@@ -33,7 +33,7 @@ message CreateOrderRequest {
message CreateOrderOneRequest {
int64 address_id = 1;
string note = 2;
int64 productid = 3;
int64 product_id = 3;
int32 num = 4;
int32 type = 5;
}
@@ -91,6 +91,10 @@ message AddressItemsRequest {
repeated string time = 8;
}
message AddressByStoreItemsRequest {
int64 store_id = 1;
}
message OrderAuditingItemsRequest {
int32 page = 1;
int32 size = 2;
@@ -186,6 +190,12 @@ service order {
body: "*"
};
};
rpc AddressByStore(AddressByStoreItemsRequest) returns(Response){
option (google.api.http) = {
get: "/admin/v3/address/store/items"
body: "*"
};
};
rpc OrderAuditingItems(OrderAuditingItemsRequest) returns(Response){
option (google.api.http) = {