package Model import ( "time" ) type TJoinAppAccessLog struct { Id int `xorm:"not null pk autoincr comment('主键') INT(11)"` SystemId string `xorm:"not null comment('第三方接入系统ID') VARCHAR(255)"` ActionCode string `xorm:"not null comment('行为代码') VARCHAR(255)"` Parameter string `xorm:"not null comment('参数') VARCHAR(255)"` Success int `xorm:"not null comment('是否执行成功') INT(255)"` LastUpdatedTime time.Time `xorm:"not null default 'current_timestamp()' comment('最后更新时间') TIMESTAMP"` }