biz_poi.go 881 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package archive
  2. const (
  3. BIZPOI = int64(1)
  4. )
  5. // PoiObj str
  6. type PoiObj struct {
  7. POI string `json:"poi"`
  8. Type int32 `json:"type"`
  9. Addr string `json:"address"`
  10. Title string `json:"title"`
  11. ShowTitle string `json:"show_title"`
  12. AdInfo *AdInfo `json:"ad_info"`
  13. Ancestors []*Ancestor `json:"ancestors"`
  14. Distance float64 `json:"distance"`
  15. ShowDistrance string `json:"show_distance"`
  16. Location *Location `json:"location"`
  17. }
  18. // AdInfo str
  19. type AdInfo struct {
  20. Nation string `json:"nation"`
  21. Provin string `json:"province"`
  22. Distri string `json:"district"`
  23. City string `json:"city"`
  24. }
  25. // Ancestor str
  26. type Ancestor struct {
  27. POI string `json:"poi"`
  28. Type int32 `json:"type"`
  29. }
  30. // Location str
  31. type Location struct {
  32. Lat float64 `json:"lat"`
  33. Lng float64 `json:"lng"`
  34. }