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有值就输出,没值则不输出
Token interface{} `json:"token,omitempty"` //omitempty有值就输出,没值则不输出
ExpireTime interface{} `json:"expire_time,omitempty"` //过期时间
Data interface{} `json:"data,omitempty"`
TotalCount interface{} `json:"total_count,omitempty"`
StartTime interface{} `json:"start_time,omitempty"`
Pk interface{} `json:"pk,omitempty"`
Count interface{} `json:"count,omitempty"`
}