package models import ( "time" ) type BotAdminLog struct { AdminId int `xorm:"not null comment('管理员ID') INT"` BodyParam string `xorm:"comment('body请求参数') JSON"` CreateDate time.Time `xorm:"comment('返款日期') index DATE"` CreateTime time.Time `xorm:"not null comment('创建时间') DATETIME"` Host string `xorm:"VARCHAR(255)"` Id int `xorm:"not null pk autoincr comment('ID') INT"` Ip string `xorm:"VARCHAR(255)"` PathInfo string `xorm:"VARCHAR(255)"` RequestParam string `xorm:"comment('request参数') JSON"` Ua string `xorm:"VARCHAR(255)"` Uri string `xorm:"VARCHAR(255)"` }