This commit is contained in:
2025-07-07 20:11:59 +08:00
parent ab0fdbc447
commit 06e3aa2eb3
2009 changed files with 193082 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// Reminders is the golang structure of table reminders for DAO operations like Where/Data.
type Reminders struct {
g.Meta `orm:"table:reminders, do:true"`
Id interface{} //
UserId interface{} // 消息接收者ID
ReminderType interface{} // 提醒类型 0 安全整改 | 1 质量整改 | 2 AI | 3 钉钉上班 | 4 钉钉下班
Title interface{} // 标题
ViolationType interface{} // 违章类型
ProjectId interface{} // 项目ID
CreatedAt *gtime.Time //
IsRead interface{} // 0 未读 | 1 已读
Status interface{} // 0 提醒 | 1 整改 | 2 复检
OrderId interface{} // 对应跳转的主键ID
}