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.
|
package activity |
|
|
|
type Activity struct { |
|
ID int64 `json:"id"` |
|
Name string `json:"name"` |
|
H5URL string `json:"h5_url"` |
|
H5Cover string `json:"h5_cover"` |
|
Desc string `json:"desc"` |
|
STime string `json:"stime"` |
|
ETime string `json:"etime"` |
|
}
|
|
|