统一初始beego mvc 的方法
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678
  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. }