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