Files
zmkgC/third/reminders/reminder_var.go
2025-07-07 20:11:59 +08:00

21 lines
384 B
Go

package reminders
type ReminderType = int
// 提醒类型
const (
Security ReminderType = iota // 安全
Quality // 质量
AI // AI
CheckIn // 上班打卡
CheckOut // 下班打卡
)
// 提醒状态
const (
Remind = iota // 提醒
Reform // 整改
Recheck // 复检
)