32 lines
1.2 KiB
Go
32 lines
1.2 KiB
Go
package model
|
|
|
|
import (
|
|
"infini.sh/framework/core/orm"
|
|
)
|
|
|
|
type NotificationType string
|
|
|
|
const (
|
|
NotificationTypeProductNews NotificationType = "PRODUCT_NEWS"
|
|
NotificationTypeAlertTriggered NotificationType = "ALERT_TRIGGERED"
|
|
NotificationTypeDataMigration NotificationType = "DATA_MIGRATION"
|
|
)
|
|
|
|
type NotificationStatus string
|
|
|
|
const (
|
|
NotificationStatusNew NotificationStatus = "NEW"
|
|
NotificationStatusRead NotificationStatus = "READ"
|
|
)
|
|
|
|
type Notification struct {
|
|
orm.ORMObjectBase
|
|
|
|
UserId string `json:"user_id,omitempty" elastic_mapping:"user_id: { type: keyword }"`
|
|
NotificationType NotificationType `json:"notification_type,omitempty" elastic_mapping:"notification_type:{type:keyword,fields:{text: {type: text}}}"`
|
|
Status NotificationStatus `json:"status,omitempty" elastic_mapping:"status: { type: keyword }"`
|
|
Title string `json:"title,omitempty" elastic_mapping:"title: { type: keyword }"`
|
|
Body string `json:"body,omitempty" elastic_mapping:"body: { type: keyword }"`
|
|
Link string `json:"link,omitempty" elastic_mapping:"link: { type: keyword }"`
|
|
}
|