// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // SystemNotifyMessage is the golang structure for table system_notify_message. type SystemNotifyMessage struct { Id int64 `json:"id" orm:"id" description:"用户ID"` // 用户ID UserId int64 `json:"userId" orm:"user_id" description:"用户id"` // 用户id UserType int `json:"userType" orm:"user_type" description:"用户类型"` // 用户类型 TemplateId int64 `json:"templateId" orm:"template_id" description:"模版编号"` // 模版编号 TemplateCode string `json:"templateCode" orm:"template_code" description:"模板编码"` // 模板编码 TemplateNickname string `json:"templateNickname" orm:"template_nickname" description:"模版发送人名称"` // 模版发送人名称 TemplateContent string `json:"templateContent" orm:"template_content" description:"模版内容"` // 模版内容 TemplateType int `json:"templateType" orm:"template_type" description:"模版类型"` // 模版类型 TemplateParams string `json:"templateParams" orm:"template_params" description:"模版参数"` // 模版参数 ReadStatus bool `json:"readStatus" orm:"read_status" description:"是否已读"` // 是否已读 ReadTime *gtime.Time `json:"readTime" orm:"read_time" description:"阅读时间"` // 阅读时间 Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者 CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间 Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者 UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间 Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除 TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户编号"` // 租户编号 }