feat: 引入循环交易管理、邮件通知和用户设置功能

This commit is contained in:
2026-02-02 11:04:03 +08:00
parent 8b2cf37b18
commit 2e869e0c85
8 changed files with 145 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
package models
// Notification Channel Constants
const (
NotificationChannelSMS = "sms"
NotificationChannelEmail = "email"
NotificationChannelBoth = "both"
NotificationChannelNone = "none"
)