Added CRM modules and tickets

This commit is contained in:
2025-07-08 09:59:46 +10:00
parent 194cb5bbe6
commit 74e9fd3f37
8 changed files with 311 additions and 0 deletions

12
models/crm_language.go Normal file
View 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"
}