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.

12 lines
364 B

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