You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pintoto/movie_info_get_schedule_lis...

63 lines
2.8 KiB

2 years ago
package pintoto
import (
2 years ago
"context"
2 years ago
"encoding/json"
"go.dtapp.net/gorequest"
)
type GetScheduleListResponse struct {
Code int `json:"code"`
Message string `json:"message"`
Data struct {
List []struct {
PlanType string `json:"planType"` // 影厅类型 2D 3D
ShowTime string `json:"showTime"` // 放映时间
NetPrice int `json:"netPrice"` // 参考价,单位:分
Language string `json:"language"` // 语言
ShowDate string `json:"showDate"` //
2 years ago
Duration int64 `json:"duration"` // 时长,分钟
2 years ago
ShowId string `json:"showId"` // 场次标识
StopSellTime string `json:"stopSellTime"` // 停售时间
CinemaId int `json:"cinemaId"` // 影院id
CinemaName string `json:"cinemaName"` //
FilmId int `json:"filmId"` // 影片id
ScheduleArea string `json:"scheduleArea"` // 该排期的分区座位价格信息,当此字段有值的时候,代表座位里面支持分区价格。 如果调用的是秒出票下单, 那价格必须计算正确,才能正确出票成功,即必须处理好座位分区价格
FilmName string `json:"filmName"` // 影片名字
HallName string `json:"hallName"` // 影厅名
ShowVersionType string `json:"showVersionType"` // 场次类型
} `json:"list"`
DiscountRule struct {
UpDiscountRate float64 `json:"upDiscountRate"` // 影院最高成本折扣当价格大于等于39元时候可取此字段
DownDiscountRate float64 `json:"downDiscountRate"` // 影院最高成本折扣当价格小于39元时候可取此字段
} `json:"discountRule"`
} `json:"data"`
Success bool `json:"success"`
}
type GetScheduleListResult struct {
Result GetScheduleListResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newGetScheduleListResult(result GetScheduleListResponse, body []byte, http gorequest.Response, err error) *GetScheduleListResult {
return &GetScheduleListResult{Result: result, Body: body, Http: http, Err: err}
}
// GetScheduleList 场次排期 https://www.showdoc.com.cn/1154868044931571/5866708808899217
2 years ago
func (c *Client) GetScheduleList(ctx context.Context, cinemaId int) *GetScheduleListResult {
2 years ago
// 参数
param := gorequest.NewParams()
param.Set("cinemaId", cinemaId)
// 转换
params := gorequest.NewParamsWith(param)
// 请求
2 years ago
request, err := c.request(ctx, apiUrl+"/movieapi/movie-info/get-schedule-list", params)
2 years ago
// 定义
var response GetScheduleListResponse
err = json.Unmarshal(request.ResponseBody, &response)
return newGetScheduleListResult(response, request.ResponseBody, request, err)
}