This commit is contained in:
huangsimin@fusen.cn
2023-12-04 16:00:09 +08:00
parent 748e0daffc
commit 1879f71f76
2 changed files with 10 additions and 4 deletions

View File

@@ -128,7 +128,7 @@ service product {
// 产品详情
rpc GetProductDetail(GetProductDetailReq) returns (GetProductDetailRsp) {
option (google.api.http) = {
get: "/api/product/get_product_detail"
get: "/api/product/detail"
};
}
}
@@ -223,9 +223,9 @@ message ContactUsRequest {
message GetProductDetailReq{
int64 product_id = 1;
string template_tag = 2;
int64 selected_color_index = 3;
optional string logo = 4;
// string template_tag = 2;
// int64 selected_color_index = 3;
// string logo = 4;
}
message GetProductDetailRsp{
string msg = 1;