special.go 326 B

1234567891011
  1. package special
  2. type Card struct {
  3. ID int64 `json:"id,omitempty"`
  4. Title string `json:"title,omitempty"`
  5. Desc string `json:"desc,omitempty"`
  6. Cover string `json:"cover,omitempty"`
  7. ReType int `json:"re_type,omitempty"`
  8. ReValue string `json:"re_value,omitempty"`
  9. Badge string `json:"badge,omitempty"`
  10. }