biz_poi.go 893 B

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