// ================================================================================= // Code generated by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // GmOperateLog is the golang structure for table gm_operate_log. type GmOperateLog struct { Id uint64 `json:"id" description:"ID"` OperateType int `json:"operateType" description:"操作类型,1修改名称,2发送邮件"` CreateName string `json:"createName" description:"GM用户名"` MailId string `json:"mailId" description:"邮件id"` ChannelId int `json:"channelId" description:"区服ID"` Uid int `json:"uid" description:"角色ID"` Remark string `json:"remark" description:"备注"` CreatedBy uint64 `json:"createdBy" description:"创建人"` CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"` UpdatedAt *gtime.Time `json:"updatedAt" description:"修改时间"` DeletedAt *gtime.Time `json:"deletedAt" description:"删除时间"` }