mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-10-05 00:02:50 +08:00
13 lines
539 B
Go
13 lines
539 B
Go
package model
|
|
|
|
//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:'是否删除'"` // 是否删除
|
|
CreateTime int64 `gorm:"comment:'创建时间'"` // 创建时间
|
|
UpdateTime int64 `gorm:"comment:'更新时间'"` // 更新时间
|
|
DeleteTime int64 `gorm:"comment:'是否删除'"` // 是否删除
|
|
}
|