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"` }