type Condition struct {
Name string `json:"name,omitempty"`
Value string `json:"value,omitempty"`
Type string `json:"type,omitempty"`
Children []*Condition `json:"children,omitempty"`
}
type Response struct {
Status int `json:"status"` // 自定义的状态码应当大于1000 Message string `json:"message,omitempty"`
Totals int64 `json:"totals,omitempty"`
Data any `json:"data,omitempty"`
}