dongfeng-pay/legend/response/areaResp.go

17 lines
290 B
Go
Raw Normal View History

2021-05-19 13:46:49 +08:00
package response
import "legend/models/legend"
type AreaListResp struct {
Code int `json:"code"`
Msg string `json:"msg"`
Count int `json:"count"`
Data []legend.Area `json:"data"`
}
type AreaInfoResp struct {
Code int
Msg string
Area *legend.Area
}