package model import "pure-admin/global" type Notify struct { // 通知 global.MG_MODEL UserId string `gorm:"size:64" json:"userId"` // 用户id RelationType string `gorm:"size:1" json:"relation_type"` // 关联类型 1-提现 RelationId string `gorm:"size:64" json:"relation_id"` // 关联id Title string `gorm:"size:255" json:"title"` // 通知标题 Content string `gorm:"size:255" json:"content"` // 通知内容 } func (Notify) TableName() string { return "notify" }