- package model
-
- import (
- "time"
- )
-
- type TaLogs struct {
- LogId string `xorm:"not null pk VARCHAR(64)"`
- UserId string `xorm:"VARCHAR(64)"`
- UserName string `xorm:"VARCHAR(32)"`
- Api string `xorm:"VARCHAR(64)"`
- ModifyTime time.Time `xorm:"DATETIME"`
- Parameter string `xorm:"TEXT"`
- Result string `xorm:"TEXT"`
- }
|