mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-11 04:59:21 +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
|
||
|
}
|