You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
567 B
Go
16 lines
567 B
Go
![]()
3 weeks ago
|
package article
|
||
|
|
||
|
type ArticleDto struct {
|
||
|
EventId uint64 `json:"eventId" omitempty`
|
||
|
Title string `json:"title" omitempty`
|
||
|
Class string `json:"class" omitempty`
|
||
|
ReleaseDate string `json:"releaseDate" omitempty`
|
||
|
ReleaseTime string `json:"releaseTime" omitempty`
|
||
|
Stocks string `json:"stocks" omitempty`
|
||
|
Brief string `json:"brief" omitempty`
|
||
|
MainBoard int `json:"mainBoard" omitempty`
|
||
|
GrowthBoard int `json:"growthBoard" omitempty`
|
||
|
Content string `json:"content" omitempty`
|
||
|
Unlock bool `json:"unlock" omitempty`
|
||
|
}
|