Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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"
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -66,6 +66,7 @@ type CallStat struct {
|
|||||||
ClientId int `gorm:"index"`
|
ClientId int `gorm:"index"`
|
||||||
CustomerDnis string
|
CustomerDnis string
|
||||||
CustomerAni string
|
CustomerAni string
|
||||||
|
SearchStartTime time.Time
|
||||||
P1ConnectTime time.Time `gorm:"index"`
|
P1ConnectTime time.Time `gorm:"index"`
|
||||||
P1DisconnectTime time.Time `gorm:"index"`
|
P1DisconnectTime time.Time `gorm:"index"`
|
||||||
BookingRequestNumber *int `gorm:"index"`
|
BookingRequestNumber *int `gorm:"index"`
|
||||||
@@ -76,6 +77,9 @@ type CallStat struct {
|
|||||||
UtsDuration int
|
UtsDuration int
|
||||||
UtsEntries int
|
UtsEntries int
|
||||||
Status string
|
Status string
|
||||||
|
FirstLanguageId int
|
||||||
|
LastLanguageId int
|
||||||
|
FirstInterpreter string
|
||||||
}
|
}
|
||||||
|
|
||||||
func (CallStat) TableName() string {
|
func (CallStat) TableName() string {
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ type DBClientProcessed struct {
|
|||||||
// PARTNER DETAILS:
|
// PARTNER DETAILS:
|
||||||
// ---
|
// ---
|
||||||
PartnerBill float64
|
PartnerBill float64
|
||||||
ParnterRate float64
|
PartnerRate float64
|
||||||
|
|
||||||
// TIMESTAMP DETAILS:
|
// TIMESTAMP DETAILS:
|
||||||
// ---
|
// ---
|
||||||
|
|||||||
Reference in New Issue
Block a user