Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4c6eed2e47 | |||
| 0f4223e873 | |||
| faca742f5f |
@@ -19,6 +19,7 @@ type BaseCall struct {
|
||||
IvrData *int
|
||||
UtsEntries int
|
||||
InterpreterCount int
|
||||
Status string
|
||||
}
|
||||
|
||||
func (BaseCall) TableName() string {
|
||||
@@ -66,13 +67,17 @@ type CallStat struct {
|
||||
ClientId int `gorm:"index"`
|
||||
CustomerDnis string
|
||||
CustomerAni string
|
||||
SearchStartTime time.Time
|
||||
SearchStartTime *time.Time
|
||||
P1ConnectTime time.Time `gorm:"index"`
|
||||
P1DisconnectTime time.Time `gorm:"index"`
|
||||
BookingRequestNumber *int `gorm:"index"`
|
||||
UtsQueue bool
|
||||
InterpreterCount int
|
||||
InterpreterAcceptedCount int
|
||||
InterpreterAccepted bool
|
||||
InterpreterConnectedCount int
|
||||
InterpreterConnected bool
|
||||
// InterpreterCount int
|
||||
// InterpreterConnected bool
|
||||
ClientDisconnected bool
|
||||
UtsDuration int
|
||||
UtsEntries int
|
||||
|
||||
@@ -20,7 +20,7 @@ type DBClientProcessed struct {
|
||||
// ---
|
||||
BuggedCall bool
|
||||
Amended bool
|
||||
CreatedAt time.Time
|
||||
CreatedAt time.Time `gorm:"autoCreateTime"`
|
||||
ModifiedAt time.Time
|
||||
CustomData *string `gorm:"type:json"`
|
||||
InternalUse *string `gorm:"type:json"`
|
||||
@@ -85,7 +85,7 @@ type DBInterpreterProcessed struct {
|
||||
// ---
|
||||
BuggedCall bool
|
||||
Amended bool
|
||||
CreatedAt time.Time
|
||||
CreatedAt time.Time `gorm:"autoCreateTime"`
|
||||
ModifiedAt time.Time
|
||||
CustomData *string `gorm:"type:json"`
|
||||
InternalUse *string `gorm:"type:json"`
|
||||
|
||||
Reference in New Issue
Block a user