package models

import "time"

// 不关注的任务列表
type TaskIgnore struct {
	tableName struct{}  `comment:"不关注的任务列表" pg:"task_ignore"`
	Id        int       `pg:"id,pk"`
	TaskId    int       `pg:"task_id"`
	UserId    int       `pg:"user_id"`
	CreatedAt time.Time `pg:"created_at"`
}