notification.go 428 字节
package models

import "time"

type Notification struct {
	TableName string `pg:"notifications,alias:notification"`
	// 通知ID
	Id int64
	// 通知类型
	NotificationType int
	// 通知标题
	NotificationTitle string
	// 通知内容
	NotificationContent string
	// 通知时间
	NotificationTime time.Time
	// 外部资源引用类型(1任务)
	ExternalResourceType int
	// 外部资源引用
	ExternalResource int64
}