sys_message_log.go 765 B

123456789101112131415161718
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "github.com/gogf/gf/os/gtime"
  7. )
  8. // SysMessageLog is the golang structure for table sys_message_log.
  9. type SysMessageLog struct {
  10. Id int `orm:"id,primary" json:"id"` // 主键
  11. MsgId int `orm:"msg_id" json:"msgId"` // 关联消息
  12. UserId int `orm:"user_id" json:"userId"` // 关联用户
  13. IsRead string `orm:"is_read" json:"isRead"` // 是否已读(10否20是)
  14. ReadTime *gtime.Time `orm:"read_time" json:"readTime"` // 已读时间
  15. }