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.
13 lines
484 B
13 lines
484 B
package dto
|
|
|
|
type Activity struct {
|
|
Id int `json:"id"`
|
|
Title string `json:"title"`
|
|
Detail string `json:"detail" dc:"活动详情" `
|
|
VisitCount int `json:"visit_count" dc:"访问人数"`
|
|
VoteCount int `json:"vote_count" dc:"投票人数"`
|
|
Start string `json:"start" dc:"开始时间"`
|
|
End string `json:"end" dc:"结束时间"`
|
|
CreatedAt string `json:"created_at" dc:"创建时间"`
|
|
Status int `json:"status" dc:"活动状态"`
|
|
}
|