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.
10 lines
429 B
10 lines
429 B
package models
|
|
|
|
type TJoinAppAccessLog struct {
|
|
Id int32 `xorm:"not null pk autoincr comment('主键') INT(11)"`
|
|
AppId int32 `xorm:"not null comment('第三方接入系统ID') index INT(11)"`
|
|
ActionCode string `xorm:"not null comment('行为代码') VARCHAR(255)"`
|
|
Parameter string `xorm:"not null comment('参数') VARCHAR(255)"`
|
|
Success int32 `xorm:"not null comment('是否执行成功') INT(255)"`
|
|
}
|