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.

18 lines
991 B

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. // Post is the golang structure for table post.
  9. type Post struct {
  10. Id int64 `json:"id" orm:"id" description:""` //
  11. PostTitle string `json:"postTitle" orm:"post_title" description:"文章/视频标题"` // 文章/视频标题
  12. PostContent string `json:"postContent" orm:"post_content" description:"文章/视频内容"` // 文章/视频内容
  13. VoteStatus int `json:"voteStatus" orm:"vote_status" description:"是否发起投票:1发起,0不发起"` // 是否发起投票:1发起,0不发起
  14. CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` //
  15. }