26 lines
1003 B
Go
26 lines
1003 B
Go
// =================================================================================
|
|
// 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
|
|
}
|