Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f5db0a0179 | |||
| c36c9eb809 | |||
| ed3f089736 |
@@ -9,6 +9,7 @@ type BaseCall struct {
|
|||||||
CallType string `gorm:"index"`
|
CallType string `gorm:"index"`
|
||||||
GenderPreference string
|
GenderPreference string
|
||||||
ClientId int `gorm:"index"`
|
ClientId int `gorm:"index"`
|
||||||
|
LanguageId int
|
||||||
CustomerDnis string
|
CustomerDnis string
|
||||||
CustomerAni string
|
CustomerAni string
|
||||||
SearchStartTime *time.Time
|
SearchStartTime *time.Time
|
||||||
|
|||||||
27
models/call_stat.go
Normal file
27
models/call_stat.go
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
package models
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type CallStat struct {
|
||||||
|
ClientConversationId string `gorm:"primaryKey;index"`
|
||||||
|
CallType string `gorm:"index"`
|
||||||
|
ClientId int `gorm:"index"`
|
||||||
|
CustomerDnis string
|
||||||
|
CustomerAni string
|
||||||
|
P1ConnectTime time.Time `gorm:"index"`
|
||||||
|
P1DisconnectTime time.Time `gorm:"index"`
|
||||||
|
BookingRequestNumber *int `gorm:"index"`
|
||||||
|
UtsQueue bool
|
||||||
|
InterpreterCount int
|
||||||
|
InterpreterConnected bool
|
||||||
|
ClientDisconnected bool
|
||||||
|
UtsDuration int
|
||||||
|
UtsEntries int
|
||||||
|
Status string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (CallStat) TableName() string {
|
||||||
|
return "gc_call_stats"
|
||||||
|
}
|
||||||
@@ -12,7 +12,7 @@ type DBSegment struct {
|
|||||||
SegmentEnd time.Time `gorm:"index"`
|
SegmentEnd time.Time `gorm:"index"`
|
||||||
SegmentStart time.Time `gorm:"index"`
|
SegmentStart time.Time `gorm:"index"`
|
||||||
SegmentType string `gorm:"index"`
|
SegmentType string `gorm:"index"`
|
||||||
SessionId string `gorm:"foreignKey"`
|
SessionId string `gorm:"index;foreignKey"`
|
||||||
WrapUpCode string
|
WrapUpCode string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user