You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// =================================================================================
// 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" )
// Log is the golang structure of table cms_log for DAO operations like Where/Data.
type Log struct { g.Meta `orm:"table:cms_log, do:true"` Id interface{} //
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
Type interface{} // 日志类别
Title interface{} // 日志说明
Error interface{} // 错误信息
SendStatus interface{} // 发送状态 | 处理状态
IsView interface{} // 已读
ViewAt *gtime.Time // 访问时间
UserId interface{} // 操作员ID
}
|