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"`
Msg interface{} `json:"msg,omitempty"` //omitempty有值就输出,没值则不输出
Data interface{} `json:"data,omitempty"` //omitempty有值就输出,没值则不输出
Count int `json:"count,omitempty"`
CodePath string `json:"code_path,omitempty"`
}