mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-06 16:47:06 +08:00
15 lines
688 B
Go
15 lines
688 B
Go
package model
|
|
|
|
import "x_admin/core"
|
|
|
|
//ArticleCollect 文章收藏实体
|
|
type ArticleCollect struct {
|
|
Id int `gorm:"primarykey;comment:'主键'"` // 主键
|
|
UserId int `gorm:"comment:'用户ID'"` // 用户ID
|
|
ArticleId int `gorm:"comment:'文章ID'"` // 文章ID
|
|
IsDelete int `gorm:"comment:'是否删除'"` // 是否删除
|
|
UpdateTime core.TsTime `gorm:"autoUpdateTime;comment:'更新时间'"` // 更新时间
|
|
CreateTime core.TsTime `gorm:"autoCreateTime;comment:'创建时间'"` // 创建时间
|
|
DeleteTime core.TsTime `gorm:"default:null;comment:'删除时间'"` // 删除时间
|
|
}
|