This commit is contained in:
laodaming@fusen.cn 2023-12-06 11:33:49 +08:00
parent 656c14c640
commit 0dc3cc97e0

View File

@ -132,6 +132,12 @@ service product {
get: "/api/product/get_product_detail"
};
}
//
rpc GetProductList(GetProductListReq) returns (basic.Response) {
option (google.api.http) = {
get: "/api/product/tag_product_list"
};
}
}
message UserInfoRequest {
@ -229,3 +235,10 @@ message GetProductDetailReq{
int64 selected_color_index = 3;
string logo = 4;
}
//
message GetProductListReq{
int64 basic_tag_id = 1; //
int64 merchant_type = 2; //
string template_tag = 3; //
bool with_product = 4; //
}