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"` //股票代码 }