nezha/model/notification_group_notification.go

8 lines
291 B
Go
Raw Normal View History

2024-10-19 12:32:55 -04:00
package model
type NotificationGroupNotification struct {
Common
NotificationGroupID uint64 `json:"notification_group_id" gorm:"uniqueIndex:idx_notification_group_notification"`
NotificationID uint64 `json:"notification_id" gorm:"uniqueIndex:idx_notification_group_notification"`
2024-10-19 12:32:55 -04:00
}