eventtopic.go 333 B

1234567891011
  1. package operate
  2. type EventTopic 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 int8 `json:"re_type,omitempty"`
  8. ReValue string `json:"re_value,omitempty"`
  9. Corner string `json:"corner,omitempty"`
  10. }