From a530630f389e4412a5cb3e4fd411cf278070da7f Mon Sep 17 00:00:00 2001 From: "laodaming@fusen.cn" Date: Tue, 5 Dec 2023 14:30:49 +0800 Subject: [PATCH 1/2] fix --- .idea/.gitignore | 0 .idea/modules.xml | 8 ++++++++ .idea/proto.iml | 9 +++++++++ .idea/vcs.xml | 6 ++++++ .idea/workspace.xml | 31 +++++++++++++++++++++++++++++++ service/fsservice.proto | 2 +- 6 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/proto.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..7b71657 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/proto.iml b/.idea/proto.iml new file mode 100644 index 0000000..5e764c4 --- /dev/null +++ b/.idea/proto.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..e03dad9 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/service/fsservice.proto b/service/fsservice.proto index 301e302..67d2ba5 100644 --- a/service/fsservice.proto +++ b/service/fsservice.proto @@ -232,7 +232,7 @@ message GetProductDetailRsp { string logo = 1; //logo TemplateTagColorInfo template_tag_color_info = 2; //标签颜色信息 ProductInfo product_info = 3; //产品基本信息 - google.protobuf.Struct base_colors = 4; //一些返回写死的颜色 + repeated google.protobuf.ListValue base_colors = 4; //一些返回写死的颜色 repeated SizeInfo size_list = 5; //尺寸相关信息 } From 47191d5c25c6acdb162578cc8d7bbd2e275d2676 Mon Sep 17 00:00:00 2001 From: "laodaming@fusen.cn" Date: Tue, 5 Dec 2023 14:39:15 +0800 Subject: [PATCH 2/2] fix --- service/fsservice.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/fsservice.proto b/service/fsservice.proto index 67d2ba5..f61860f 100644 --- a/service/fsservice.proto +++ b/service/fsservice.proto @@ -232,7 +232,7 @@ message GetProductDetailRsp { string logo = 1; //logo TemplateTagColorInfo template_tag_color_info = 2; //标签颜色信息 ProductInfo product_info = 3; //产品基本信息 - repeated google.protobuf.ListValue base_colors = 4; //一些返回写死的颜色 + google.protobuf.ListValue base_colors = 4; //一些返回写死的颜色 repeated SizeInfo size_list = 5; //尺寸相关信息 }