beegoinit/response/xml.go
2020-07-10 10:51:40 +08:00

9 řádky
171 B
Go

package response
type Xml struct {
Code int `xml:"code"`
Data interface{} `xml:"data"`
Msg string `xml:"msg"`
Status bool `xml:"status"`
}