map_info.go 687 B

1234567891011121314151617181920212223
  1. package model
  2. type MapInfoRes struct {
  3. Msg string `json:"msg"`
  4. Code int `json:"code"`
  5. Data []MapInfo `json:"data"`
  6. }
  7. type MapInfo struct {
  8. MapType string `json:"mapType"`
  9. MapId string `json:"mapId"`
  10. MapName string `json:"mapName"`
  11. Floor int `json:"floor"`
  12. FloorId string `json:"floorId"`
  13. BuildId string `json:"buildId"`
  14. BuildName string `json:"buildName"`
  15. CreateTime string `json:"createTime"`
  16. UpdateTime string `json:"updateTime"`
  17. Version int `json:"version"`
  18. ZipUrl string `json:"zipUrl"`
  19. CustomAreaId int `json:"customAreaId"`
  20. SnCodeList []string `json:"snCodeList"`
  21. }