package MySwagger // Query(后台)出口返回 type DatahyperGetResult struct { // 成功 Success bool `json:"success" example:"true"` // 总条数 Total int `json:"total" example:"50"` // 结果数据 Result []map[string]interface{} `json:"result" swaggertype:"string" example:"[{id:12300,name:zhangj,org_id:123001}]"` // 消息 Message string `json:"message" example:"操作成功"` }