123456789101112131415161718192021222324 |
- package model
- import (
- "time"
- )
- type Log struct {
- AdminID int32 `gorm:"column:adminid"`
- Oid int64 `gorm:"column:oid"`
- Business int8 `gorm:"column:business"`
- Target int32 `gorm:"column:target"`
- Module int8 `gorm:"column:module"`
- Remark string `gorm:"column:remark"`
- Note string `gorm:"column:note"`
- CTime time.Time `gorm:"column:ctime"`
- MTime time.Time `gorm:"column:mtime"`
- }
- func (*Log) TableName() string {
- return "workflow_log"
- }
|