广告平台(媒体使用)
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

md_api_response.go 192 B

1234567
  1. package md
  2. type Response struct {
  3. Code string `json:"code" example:"响应码"`
  4. Data interface{} `json:"data" ` //内容
  5. Msg string `json:"msg" example:"具体错误原因"`
  6. }