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.
15 lines
602 B
15 lines
602 B
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"`
|
|
}
|