mapInfo.go 391 B

1234567891011121314151617
  1. package dto
  2. import "git.rtzhtech.cn/iss/public-lib/model"
  3. type GetMapInfoRequest struct {
  4. Stageid string `json:"stageid"`
  5. AppId int64 `json:"appId"`
  6. Stationid int64 `json:"stationid"`
  7. Maptype int `json:"maptype"`
  8. Index int `json:"index"`
  9. LimitPage
  10. }
  11. type GetMapInfoResponse struct {
  12. List *[]model.MapInfo `json:"list"`
  13. Total int64 `json:"total"`
  14. }