task_ignore.go 303 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 package models import "time" // 不关注的任务列表 type TaskIgnore struct { tableName struct{} `comment:"不关注的任务列表" pg:"task_ignore"` Id int `pg:"id"` TaskId int `pg:"task_id"` UserId int `pg:"user_id"` CreatedAt time.Time `pg:"created_at"` }