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.

41 lines
1.6 KiB

3 weeks ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // Wish is the golang structure of table wish for DAO operations like Where/Data.
  10. type Wish struct {
  11. g.Meta `orm:"table:wish, do:true"`
  12. Id interface{} //
  13. Jwcode interface{} // 用户标识
  14. Title interface{} // 心愿名称
  15. Content interface{} // 心愿内容
  16. Image interface{} // 图片,多张图片用json格式保存
  17. Type interface{} // 1精网2弘历软件3大财神4锦囊5L-2产品
  18. Status interface{} // 0隐藏1待处理2排期中3在开发4已上线
  19. Support interface{} // 点赞数
  20. Opposition interface{} // 反对数
  21. Comment interface{} // 评论数
  22. Fee interface{} // 打赏当午券数
  23. FeeNum interface{} // 打赏人数
  24. Vote interface{} // 总票数
  25. Zan interface{} // 点赞数
  26. See interface{} // 观看数
  27. Class interface{} // 1心愿2公告
  28. Label interface{} // 1软件bug2产品需求3市场建议
  29. Delete interface{} // 0正常1删除2隐藏
  30. ManagerJwcode interface{} // 负责人的jwcode
  31. Order interface{} // 排序
  32. Coding interface{} // 是否经过开发
  33. DeadLine *gtime.Time // 上线日期
  34. Language interface{} //
  35. SubjectId interface{} // 话题ID
  36. CreatedAt interface{} //
  37. UpdatedAt interface{} //
  38. }