23 lines
809 B

5 months 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. )
  8. // Notice is the golang structure of table notice for DAO operations like Where/Data.
  9. type Notice struct {
  10. g.Meta `orm:"table:notice, do:true"`
  11. Id interface{} //
  12. Type interface{} // 1进度修改2评论3点赞
  13. WishId interface{} // 心愿ID
  14. CommentId interface{} //
  15. Jwcode interface{} // 操作人
  16. NoticeJwcode interface{} // 通知人
  17. State interface{} // 0新通知1已看
  18. WishState interface{} // 把心愿改成的状态
  19. CreatedAt interface{} //
  20. }