beegoinit/response/xml.go

9 lines
171 B
Go
Raw Normal View History

2020-07-10 10:51:40 +08:00
package response
type Xml struct {
Code int `xml:"code"`
Data interface{} `xml:"data"`
Msg string `xml:"msg"`
Status bool `xml:"status"`
}