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