统一初始beego mvc 的方法
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
171 B

  1. package response
  2. type Xml struct {
  3. Code int `xml:"code"`
  4. Data interface{} `xml:"data"`
  5. Msg string `xml:"msg"`
  6. Status bool `xml:"status"`
  7. }