mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-13 14:09:20 +08:00
17 lines
290 B
Go
17 lines
290 B
Go
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
|
|
}
|