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.
27 lines
945 B
27 lines
945 B
3 years ago
|
// =================================================================================
|
||
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||
|
// =================================================================================
|
||
|
|
||
|
package do
|
||
|
|
||
|
import (
|
||
|
"github.com/gogf/gf/v2/frame/g"
|
||
|
"github.com/gogf/gf/v2/os/gtime"
|
||
|
)
|
||
|
|
||
|
// GmOperateLog is the golang structure of table gm_operate_log for DAO operations like Where/Data.
|
||
|
type GmOperateLog struct {
|
||
|
g.Meta `orm:"table:gm_operate_log, do:true"`
|
||
|
Id interface{} // ID
|
||
|
OperateType interface{} // 操作类型,1修改名称,2发送邮件
|
||
|
CreateName interface{} // GM用户名
|
||
|
MailId interface{} // 邮件id
|
||
|
ChannelId interface{} // 区服ID
|
||
|
Uid interface{} // 角色ID
|
||
|
Remark interface{} // 备注
|
||
|
CreatedBy interface{} // 创建人
|
||
|
CreatedAt *gtime.Time // 创建时间
|
||
|
UpdatedAt *gtime.Time // 修改时间
|
||
|
DeletedAt *gtime.Time // 删除时间
|
||
|
}
|