diff --git a/service/fsservice.proto b/service/fsservice.proto index 4087164..e305606 100644 --- a/service/fsservice.proto +++ b/service/fsservice.proto @@ -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; //是否携带分类下的产品 } \ No newline at end of file