package orm import "time" type BaseModel struct { CreatedAt time.Time `gorm:"autoCreateTime:milli"` UpdatedAt time.Time `gorm:"autoUpdateTime:milli"` DeletedAt time.Time `gorm:"index"` CreatedBy string UpdatedBy string DeletedBy string }