初始
This commit is contained in:
25
internal/app/system/model/do/reminders.go
Normal file
25
internal/app/system/model/do/reminders.go
Normal 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
|
||||
}
|
Reference in New Issue
Block a user