user_love_flag.go
423 字节
package domain
import "time"
// 人员点赞标记
type UserLoveFlag struct {
Id int64 `json:"id"`
ArticleId int64 `json:"articleId"` // 点赞文章时,文章id
CommentId int64 `json:"commentId"` // 点赞评论时,填评论id
UserId int64 `json:"userId"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
DeletedAt *time.Time `json:"deletedAt"`
}