From 699a11386357497343c4960c2f0c79082dc1bbc5 Mon Sep 17 00:00:00 2001 From: liguanjie Date: Tue, 15 Jul 2025 16:24:22 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90cs=E6=9C=8D=E5=8A=A1=E3=80=91faq?= =?UTF-8?q?=E8=AF=A6=E6=83=85=EF=BC=8C=E8=BF=94=E5=9B=9E=E6=A8=A1=E6=9D=BF?= =?UTF-8?q?code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/cs/faq.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/services/cs/faq.go b/services/cs/faq.go index 0fa268d..b2f192a 100644 --- a/services/cs/faq.go +++ b/services/cs/faq.go @@ -49,13 +49,14 @@ func CreateGetFaqResponse() (response *GetFaqResponse) { // FaqDetail Faq详情 type FaqDetail struct { - Id int64 `json:"id"` - ParentId int64 `json:"parent_id"` - Title string `json:"title"` - Answer string `json:"answer"` - Type int64 `json:"type"` - WorkOrderTemplateId int64 `json:"work_order_template_id"` - ProcessFlow string `json:"process_flow"` + Id int64 `json:"id"` + ParentId int64 `json:"parent_id"` + Title string `json:"title"` + Answer string `json:"answer"` + Type int64 `json:"type"` + WorkOrderTemplateId int64 `json:"work_order_template_id"` + ProcessFlow string `json:"process_flow"` + WorkOrderTemplateCode string `json:"work_order_template_code"` } type GetFaqDetailRequest struct { *requests.JsonRequest