统一初始beego mvc 的方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
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. }