crm_config.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package eta
  2. import (
  3. "eta/eta_bridge/global"
  4. "time"
  5. )
  6. const (
  7. ConfEnAuthRoleKey = "en_auth_role" // 英文权限角色配置Key
  8. )
  9. // CrmConfig CRM配置表
  10. type CrmConfig struct {
  11. ConfigId int `gorm:"primaryKey;column:config_id;type:int(11);not null" json:"config_id"`
  12. ConfigCode string `gorm:"column:config_code;type:varchar(50);default:''" json:"config_code"` // 配置编码
  13. ConfigValue string `gorm:"column:config_value;type:text" json:"config_value"` // 配置值
  14. Remark string `gorm:"column:remark;type:varchar(255);default:''" json:"remark"` // 备注信息
  15. CreateTime time.Time `gorm:"column:create_time;type:datetime" json:"create_time"` // 创建时间
  16. }
  17. func (m *CrmConfig) TableName() string {
  18. return "crm_config"
  19. }
  20. // GetCrmConfByCode code获取配置
  21. func GetCrmConfByCode(code string) (item *CrmConfig, err error) {
  22. err = global.MYSQL["hz_eta"].Where("config_code = ?", code).First(&item).Error
  23. return
  24. }
  25. // ConfEnAuthRole 配置-英文权限角色
  26. type ConfEnAuthRole struct {
  27. RoleCode string `description:"角色编码"`
  28. RoleName string `description:"角色名称"`
  29. SyncCrm bool `description:"是否同步CRM"`
  30. }