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.
12 lines
483 B
Go
12 lines
483 B
Go
![]()
3 weeks ago
|
package article
|
||
|
|
||
|
type LianV1Article struct {
|
||
|
Id uint64 `xorm:"<- not null" ` //id
|
||
|
Title string `xorm:"<- not null" json:"title"` //标题
|
||
|
Type uint64 `xorm:"<- not null"` //类型
|
||
|
Ctime int64 `xorm:"<- not null ctime" ` // 发布时间
|
||
|
Brief string `xorm:"<- not null" json:"brief"` //简介
|
||
|
Content string `xorm:"<- not null" json:"content"` //内容
|
||
|
Stocks string `xorm:"<- not null" json:"stocks"` //股票代码
|
||
|
}
|