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.
15 lines
430 B
15 lines
430 B
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:"操作成功"`
|
|
}
|
|
|