Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ee521aa378 | |||
| c106209130 | |||
| 4c6eed2e47 | |||
| 0f4223e873 | |||
| faca742f5f | |||
| 3823096f4c | |||
| c9a99faa54 | |||
| e8aeb4d3b7 |
@@ -9,23 +9,9 @@ type DBAmendment struct {
|
|||||||
AmendmentValue string
|
AmendmentValue string
|
||||||
Requestor string
|
Requestor string
|
||||||
RequestedAt time.Time
|
RequestedAt time.Time
|
||||||
|
Sequence string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (DBAmendment) TableName() string {
|
func (DBAmendment) TableName() string {
|
||||||
return "gc_amendments"
|
return "gc_amendments"
|
||||||
}
|
}
|
||||||
|
|
||||||
type DBAmendmentLog struct {
|
|
||||||
Id int `gorm:"primaryKey;autoIncrement"`
|
|
||||||
ConversationId string `gorm:"index"`
|
|
||||||
AmendmentColumn string
|
|
||||||
OldValue string
|
|
||||||
NewValue string
|
|
||||||
Requestor string
|
|
||||||
RequestedAt time.Time
|
|
||||||
AmendedAt time.Time
|
|
||||||
}
|
|
||||||
|
|
||||||
func (DBAmendmentLog) TableName() string {
|
|
||||||
return "gc_amendment_logs"
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ type BaseCall struct {
|
|||||||
IvrData *int
|
IvrData *int
|
||||||
UtsEntries int
|
UtsEntries int
|
||||||
InterpreterCount int
|
InterpreterCount int
|
||||||
|
Status string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (BaseCall) TableName() string {
|
func (BaseCall) TableName() string {
|
||||||
@@ -61,21 +62,32 @@ func (InterpreterConnection) TableName() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type CallStat struct {
|
type CallStat struct {
|
||||||
ClientConversationId string `gorm:"primaryKey;index"`
|
ClientConversationId string `gorm:"primaryKey;index"`
|
||||||
CallType string `gorm:"index"`
|
CallType string `gorm:"index"`
|
||||||
ClientId int `gorm:"index"`
|
ClientId int `gorm:"index"`
|
||||||
CustomerDnis string
|
CustomerDnis string
|
||||||
CustomerAni string
|
CustomerAni string
|
||||||
P1ConnectTime time.Time `gorm:"index"`
|
ConversationStart time.Time `gorm:"index"`
|
||||||
P1DisconnectTime time.Time `gorm:"index"`
|
ConversationEnd time.Time `gorm:"index"`
|
||||||
BookingRequestNumber *int `gorm:"index"`
|
SearchStartTime *time.Time
|
||||||
UtsQueue bool
|
P1ConnectTime time.Time `gorm:"index"`
|
||||||
InterpreterCount int
|
P1DisconnectTime time.Time `gorm:"index"`
|
||||||
InterpreterConnected bool
|
BookingRequestNumber *int `gorm:"index"`
|
||||||
ClientDisconnected bool
|
UtsQueue bool
|
||||||
UtsDuration int
|
InterpreterAcceptedCount int
|
||||||
UtsEntries int
|
InterpreterAccepted bool
|
||||||
Status string
|
InterpreterConnectedCount int
|
||||||
|
InterpreterConnected bool
|
||||||
|
// InterpreterCount int
|
||||||
|
// InterpreterConnected bool
|
||||||
|
ClientDisconnected bool
|
||||||
|
UtsDuration int
|
||||||
|
UtsEntries int
|
||||||
|
Status string
|
||||||
|
SubStatus string
|
||||||
|
FirstLanguageId int
|
||||||
|
LastLanguageId int
|
||||||
|
FirstInterpreter string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (CallStat) TableName() string {
|
func (CallStat) TableName() string {
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ type DBClientProcessed struct {
|
|||||||
// ---
|
// ---
|
||||||
BuggedCall bool
|
BuggedCall bool
|
||||||
Amended bool
|
Amended bool
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time `gorm:"autoCreateTime"`
|
||||||
ModifiedAt time.Time
|
ModifiedAt time.Time
|
||||||
CustomData *string `gorm:"type:json"`
|
CustomData *string `gorm:"type:json"`
|
||||||
InternalUse *string `gorm:"type:json"`
|
InternalUse *string `gorm:"type:json"`
|
||||||
@@ -54,7 +54,7 @@ type DBClientProcessed struct {
|
|||||||
// PARTNER DETAILS:
|
// PARTNER DETAILS:
|
||||||
// ---
|
// ---
|
||||||
PartnerBill float64
|
PartnerBill float64
|
||||||
ParnterRate float64
|
PartnerRate float64
|
||||||
|
|
||||||
// TIMESTAMP DETAILS:
|
// TIMESTAMP DETAILS:
|
||||||
// ---
|
// ---
|
||||||
@@ -85,7 +85,7 @@ type DBInterpreterProcessed struct {
|
|||||||
// ---
|
// ---
|
||||||
BuggedCall bool
|
BuggedCall bool
|
||||||
Amended bool
|
Amended bool
|
||||||
CreatedAt time.Time
|
CreatedAt time.Time `gorm:"autoCreateTime"`
|
||||||
ModifiedAt time.Time
|
ModifiedAt time.Time
|
||||||
CustomData *string `gorm:"type:json"`
|
CustomData *string `gorm:"type:json"`
|
||||||
InternalUse *string `gorm:"type:json"`
|
InternalUse *string `gorm:"type:json"`
|
||||||
|
|||||||
Reference in New Issue
Block a user