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 {
@@ -228,4 +234,11 @@ message GetProductDetailReq{
string template_tag = 2;
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; //是否携带分类下的产品
}