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.

20 lines
1.2 KiB

2 weeks ago
2 weeks ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // Article is the golang structure for table article.
  9. type Article struct {
  10. Id int64 `json:"id" orm:"id" description:""` //
  11. UserId int64 `json:"userId" orm:"user_id" description:""` //
  12. ArticleTitle string `json:"articleTitle" orm:"article_title" description:"文章/视频标题"` // 文章/视频标题
  13. ArticleContent string `json:"articleContent" orm:"article_content" description:"文章/视频内容"` // 文章/视频内容
  14. VoteStatus int `json:"voteStatus" orm:"vote_status" description:"是否发起投票:1发起,0不发起"` // 是否发起投票:1发起,0不发起
  15. CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` //
  16. UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:""` //
  17. }