初始
This commit is contained in:
20
third/reminders/reminder_var.go
Normal file
20
third/reminders/reminder_var.go
Normal file
@ -0,0 +1,20 @@
|
||||
package reminders
|
||||
|
||||
type ReminderType = int
|
||||
|
||||
// 提醒类型
|
||||
const (
|
||||
Security ReminderType = iota // 安全
|
||||
Quality // 质量
|
||||
AI // AI
|
||||
CheckIn // 上班打卡
|
||||
CheckOut // 下班打卡
|
||||
)
|
||||
|
||||
// 提醒状态
|
||||
|
||||
const (
|
||||
Remind = iota // 提醒
|
||||
Reform // 整改
|
||||
Recheck // 复检
|
||||
)
|
Reference in New Issue
Block a user