24 lines
1.2 KiB
Go
24 lines
1.2 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// Reminders is the golang structure for table reminders.
|
|
type Reminders struct {
|
|
Id uint `json:"id" description:""`
|
|
UserId int `json:"user_id" description:"消息接收者ID"`
|
|
ReminderType int `json:"reminder_type" description:"提醒类型 0 安全整改 | 1 质量整改 | 2 AI | 3 钉钉上班 | 4 钉钉下班"`
|
|
Title string `json:"title" description:"标题"`
|
|
ViolationType string `json:"violation_type" description:"违章类型"`
|
|
ProjectId int `json:"project_id" description:"项目ID"`
|
|
CreatedAt *gtime.Time `json:"created_at" description:""`
|
|
IsRead int `json:"is_read" description:"0 未读 | 1 已读"`
|
|
Status int `json:"status" description:"0 提醒 | 1 整改 | 2 复检"`
|
|
OrderId int `json:"order_id" description:"对应跳转的主键ID"`
|
|
}
|