6
0

Compare commits

...

4 Commits

Author SHA1 Message Date
liguanjie
4b13de26bd 【cs服务】更新cs api域名 2025-07-22 20:02:50 +08:00
liguanjie
e6d4532874 Merge branch 'master' into develop/lgj/order 2025-07-22 20:00:24 +08:00
huangqz
e30ecac33b gameInfo新增字段 2025-07-21 17:07:12 +08:00
liguanjie
699a113863 【cs服务】faq详情,返回模板code 2025-07-15 16:24:22 +08:00
3 changed files with 12 additions and 8 deletions

View File

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

View File

@ -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

View File

@ -103,6 +103,9 @@ type GameInfoData struct {
FlashPassKey string `json:"flash_pass_key"`
GameByname string `json:"game_byname"`
GameIconImg string `json:"game_icon_img"`
GameImage string `json:"game_image"`
GameHomeImage string `json:"game_home_image"`
GameHomeShortImage string `json:"game_home_short_image"`
GameSign string `json:"game_sign"`
GameTsUrl string `json:"game_ts_url"`
GameVersion string `json:"game_version"`