film/worker/type.go

38 lines
554 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 {
HallName string
StartTime string
EndTime string
SessionId string
}
type DadiFilmShow struct {
Day string
Halls []*DadiFilmShowHall
}
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
}