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.
19 lines
707 B
19 lines
707 B
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)"`
|
|
}
|
|
|