6
0

Compare commits

..

No commits in common. "4b13de26bde5a65ba165770bef70c4e7e159fdca" and "e30ecac33b4b8fd4eee4ef20be6176cc34d4fd76" have entirely different histories.

2 changed files with 8 additions and 9 deletions

View File

@ -11,7 +11,7 @@ const (
)
var HOST = requests.Host{
Default: "cs.api.gaore.com",
Default: "cs",
}
type Client struct {

View File

@ -49,14 +49,13 @@ 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"`
WorkOrderTemplateCode string `json:"work_order_template_code"`
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"`
}
type GetFaqDetailRequest struct {
*requests.JsonRequest