Added CRM modules and tickets
This commit is contained in:
12
models/crm_language.go
Normal file
12
models/crm_language.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package models
|
||||
|
||||
type CrmLanguage struct {
|
||||
ID int `gorm:"primaryKey;column:id" json:"id"`
|
||||
Name *string `gorm:"column:name" json:"name"`
|
||||
Active *bool `gorm:"column:active" json:"active"`
|
||||
CRMID *string `gorm:"column:crm_id" json:"crm_id"`
|
||||
}
|
||||
|
||||
func (CrmLanguage) TableName() string {
|
||||
return "live_languages"
|
||||
}
|
||||
Reference in New Issue
Block a user