2024-10-20 00:32:55 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type NotificationGroupNotification struct {
|
|
|
|
Common
|
2024-10-23 21:55:12 +08:00
|
|
|
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-20 00:32:55 +08:00
|
|
|
}
|