30 lines
661 B
Go
30 lines
661 B
Go
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"
|
|
}
|
|
*/
|