mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-13 14:09:20 +08:00
11 lines
223 B
Go
11 lines
223 B
Go
package response
|
|
|
|
import "legend/models/legend"
|
|
|
|
type GroupListResp struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Count int `json:"count"`
|
|
Data []legend.Group `json:"data"`
|
|
}
|