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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package Model
type Res struct {
Code interface { } ` json:"code,omitempty" ` //omitempty有值就输出, 没值则不输出
Msg interface { } ` json:"msg,omitempty" ` //omitempty有值就输出, 没值则不输出
Items interface { } ` json:"items,omitempty" ` //omitempty有值就输出, 没值则不输出
Data interface { } ` json:"data,omitempty" ` //omitempty有值就输出, 没值则不输出
TotalCount interface { } ` json:"total_count,omitempty" ` //个数
}
type AppInfo struct {
Code int ` json:"code,omitempty" `
AppKey string ` json:"app_key,omitempty" `
AppSecret string ` json:"app_secret,omitempty" `
AppName string ` json:"app_name,omitempty" `
RedirectUri string ` json:"redirect_uri,omitempty" `
Msg string ` json:"msg,omitempty" `
}