log.go 661 B

123456789101112131415161718192021222324
  1. package model
  2. import (
  3. "time"
  4. )
  5. // Log is the universal tag model, contains any type of tags
  6. // The Business field and the Round field will from any business definition
  7. type Log struct {
  8. AdminID int32 `gorm:"column:adminid"`
  9. Oid int64 `gorm:"column:oid"`
  10. Business int8 `gorm:"column:business"`
  11. Target int32 `gorm:"column:target"`
  12. Module int8 `gorm:"column:module"`
  13. Remark string `gorm:"column:remark"`
  14. Note string `gorm:"column:note"`
  15. CTime time.Time `gorm:"column:ctime"`
  16. MTime time.Time `gorm:"column:mtime"`
  17. }
  18. // TableName Tag tablename
  19. func (*Log) TableName() string {
  20. return "workflow_log"
  21. }