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
1.3 KiB

3 weeks ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // Notice is the golang structure for table notice.
  6. type Notice struct {
  7. Id uint `json:"id" orm:"id" description:""` //
  8. Type int `json:"type" orm:"type" description:"1进度修改2评论3点赞"` // 1进度修改2评论3点赞
  9. WishId int `json:"wishId" orm:"wish_id" description:"心愿ID"` // 心愿ID
  10. CommentId int `json:"commentId" orm:"comment_id" description:""` //
  11. Jwcode int `json:"jwcode" orm:"jwcode" description:"操作人"` // 操作人
  12. NoticeJwcode int `json:"noticeJwcode" orm:"notice_jwcode" description:"通知人"` // 通知人
  13. State int `json:"state" orm:"state" description:"0新通知1已看"` // 0新通知1已看
  14. WishState int `json:"wishState" orm:"wish_state" description:"把心愿改成的状态"` // 把心愿改成的状态
  15. CreatedAt int `json:"createdAt" orm:"created_at" description:""` //
  16. }