user_love_flag.go 279 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package domain import "time" // 人员点赞标记 type UserLoveFlag struct { Id int64 ArticleId int64 //点赞文章时,填文章id CommentId int64 //点赞评论时,填评论id UserId int64 CreatedAt time.Time UpdatedAt time.Time DeletedAt *time.Time }