17 lines
253 B
Go
17 lines
253 B
Go
package entity
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type IncidentAuditEntity struct {
|
|
gorm.Model
|
|
IncidentId uint
|
|
Event string
|
|
UserName string
|
|
UserId string
|
|
Version int
|
|
}
|
|
|
|
func (IncidentAuditEntity) TableName() string {
|
|
return "incident_audit"
|
|
}
|