film/worker/type.go

47 lines
667 B
Go
Raw Normal View History

2023-04-07 23:51:09 +08:00
package worker
2023-04-08 01:38:13 +08:00
type DadiFilmShowHall struct {
2023-04-08 20:33:48 +08:00
ShowDay string
FilmName string
2023-04-08 01:38:13 +08:00
HallName string
StartTime string
EndTime string
SessionId string
}
type DadiFilmShow struct {
Day string
Halls []*DadiFilmShowHall
}
2023-04-08 20:33:48 +08:00
type DadiFilmOrder struct {
OrderId string
}
type DadiFilmSeat struct {
}
2023-04-08 01:38:13 +08:00
type DadiFilm struct {
Id int64
Name string
Shows []*DadiFilmShow
}
2023-04-07 23:51:09 +08:00
type DadiCinema struct {
2023-04-08 01:38:13 +08:00
Id int64
UnifiedCode int64
2023-04-07 23:51:09 +08:00
Name string
Address string
Latitude string
Longitude string
CityId int64
}
type DadiCity struct {
Name string
ShortName string
CityCode int64
CityId int64
2023-04-08 01:38:13 +08:00
Cinemas []*DadiCinema
2023-04-07 23:51:09 +08:00
}