package dto import "git.rtzhtech.cn/iss/public-lib/model" type GetMapInfoRequest struct { Stageid string `json:"stageid"` AppId int64 `json:"appId"` Stationid int64 `json:"stationid"` Maptype int `json:"maptype"` Index int `json:"index"` LimitPage } type GetMapInfoResponse struct { List *[]model.MapInfo `json:"list"` Total int64 `json:"total"` }