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.

14 lines
666 B

This file contains ambiguous Unicode characters!

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