ta_logs.go 354B

123456789101112131415
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaLogs struct {
  6. LogId string `xorm:"not null pk VARCHAR(64)"`
  7. UserId string `xorm:"VARCHAR(64)"`
  8. UserName string `xorm:"VARCHAR(32)"`
  9. Api string `xorm:"VARCHAR(64)"`
  10. ModifyTime time.Time `xorm:"DATETIME"`
  11. Parameter string `xorm:"TEXT"`
  12. Result string `xorm:"TEXT"`
  13. }