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.

39 lines
3.8 KiB

3 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. // Wish is the golang structure for table wish.
  9. type Wish struct {
  10. Id uint `json:"id" orm:"id" description:""` //
  11. Jwcode int `json:"jwcode" orm:"jwcode" description:"用户标识"` // 用户标识
  12. Title string `json:"title" orm:"title" description:"心愿名称"` // 心愿名称
  13. Content string `json:"content" orm:"content" description:"心愿内容"` // 心愿内容
  14. Image string `json:"image" orm:"image" description:"图片,多张图片用json格式保存"` // 图片,多张图片用json格式保存
  15. Type int `json:"type" orm:"type" description:"1精网2弘历软件3大财神4锦囊5L-2产品"` // 1精网2弘历软件3大财神4锦囊5L-2产品
  16. Status int `json:"status" orm:"status" description:"0隐藏1待处理2排期中3在开发4已上线"` // 0隐藏1待处理2排期中3在开发4已上线
  17. Support int `json:"support" orm:"support" description:"点赞数"` // 点赞数
  18. Opposition int `json:"opposition" orm:"opposition" description:"反对数"` // 反对数
  19. Comment int `json:"comment" orm:"comment" description:"评论数"` // 评论数
  20. Fee float64 `json:"fee" orm:"fee" description:"打赏当午券数"` // 打赏当午券数
  21. FeeNum int `json:"feeNum" orm:"fee_num" description:"打赏人数"` // 打赏人数
  22. Vote int `json:"vote" orm:"vote" description:"总票数"` // 总票数
  23. Zan int `json:"zan" orm:"zan" description:"点赞数"` // 点赞数
  24. See int `json:"see" orm:"see" description:"观看数"` // 观看数
  25. Class int `json:"class" orm:"class" description:"1心愿2公告"` // 1心愿2公告
  26. Label uint `json:"label" orm:"label" description:"1软件bug2产品需求3市场建议"` // 1软件bug2产品需求3市场建议
  27. Delete int `json:"delete" orm:"delete" description:"0正常1删除2隐藏"` // 0正常1删除2隐藏
  28. ManagerJwcode int `json:"managerJwcode" orm:"manager_jwcode" description:"负责人的jwcode"` // 负责人的jwcode
  29. Order uint `json:"order" orm:"order" description:"排序"` // 排序
  30. Coding int `json:"coding" orm:"coding" description:"是否经过开发"` // 是否经过开发
  31. DeadLine *gtime.Time `json:"deadLine" orm:"dead_line" description:"上线日期"` // 上线日期
  32. Language string `json:"language" orm:"language" description:""` //
  33. SubjectId int `json:"subjectId" orm:"subject_id" description:"话题ID"` // 话题ID
  34. CreatedAt int `json:"createdAt" orm:"created_at" description:""` //
  35. UpdatedAt int `json:"updatedAt" orm:"updated_at" description:""` //
  36. }