Files
epic-go/internal/model/do/system_notify_message.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

33 lines
1.3 KiB
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"
)
// SystemNotifyMessage is the golang structure of table system_notify_message for DAO operations like Where/Data.
type SystemNotifyMessage struct {
g.Meta `orm:"table:system_notify_message, do:true"`
Id interface{} // 用户ID
UserId interface{} // 用户id
UserType interface{} // 用户类型
TemplateId interface{} // 模版编号
TemplateCode interface{} // 模板编码
TemplateNickname interface{} // 模版发送人名称
TemplateContent interface{} // 模版内容
TemplateType interface{} // 模版类型
TemplateParams interface{} // 模版参数
ReadStatus interface{} // 是否已读
ReadTime *gtime.Time // 阅读时间
Creator interface{} // 创建者
CreateTime *gtime.Time // 创建时间
Updater interface{} // 更新者
UpdateTime *gtime.Time // 更新时间
Deleted interface{} // 是否删除
TenantId interface{} // 租户编号
}