log.go 286 B

1234567891011121314
  1. package model
  2. import (
  3. xtime "go-common/library/time"
  4. )
  5. // OperationLog operation log .
  6. type OperationLog struct {
  7. ID int64 `json:"id"`
  8. OID int64 `json:"oid"`
  9. Action string `json:"action"`
  10. CTime xtime.Time `json:"ctime"`
  11. MTime xtime.Time `json:"mtime"`
  12. }