添加分区逻辑代码

This commit is contained in:
kongyuebin
2021-05-19 13:46:49 +08:00
parent f7a7eb737d
commit 706a95317d
34 changed files with 629 additions and 73 deletions

View File

@@ -0,0 +1,16 @@
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
}