12345678910111213141516171819202122232425 |
- package yb_message
- import "time"
- type YbMessage struct {
- MsgId uint64 `gorm:"primaryKey;column:msg_id"`
- UserId uint64 `gorm:"column:user_id"`
- Type int8 `gorm:"column:type"`
- Enabled int8 `gorm:"column:enabled"`
- CreateTime time.Time `gorm:"column:create_time"`
- ModifyTime time.Time `gorm:"column:modify_time"`
- CommentId uint64 `gorm:"column:comment_id"`
- IsRead int8 `gorm:"column:is_read"`
- ContentFirst string `gorm:"column:content_first"`
- ContentSecond string `gorm:"column:content_second"`
- ReportId int `gorm:"column:report_id"`
- ReportChapterId int `gorm:"column:report_chapter_id"`
- OldReportId int `gorm:"column:old_report_id"`
- OldReportChapterId int `gorm:"column:old_report_chapter_id"`
- }
- func (ym *YbMessage) TableName() string {
- return "yb_message"
- }
|