dictService.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package service
  2. import (
  3. "fmt"
  4. "iot_manager_service/app/system/dao"
  5. "iot_manager_service/util/cache"
  6. "iot_manager_service/util/logger"
  7. "strconv"
  8. )
  9. // 字典管理服务
  10. var DictService = new(dictService)
  11. type dictService struct{}
  12. const (
  13. ControlType = "control_type"
  14. ModuleType = "module_his_type"
  15. Sex = "sex"
  16. ResolutionType = "resolution_type"
  17. SexNameKey = "%d:sys:sex_name:%d"
  18. ModuleTypeKey = "%d:dict:module_type:%d"
  19. ControlTypeKey = "%d:dict:control_type:%d"
  20. ResolutionTypeKey = "%d:dict:resolution_type:%d"
  21. )
  22. func (s *dictService) GetCacheDict(redisKey, code string, dictId int) string {
  23. var name string
  24. name, err := cache.Redis.Get(redisKey).Result()
  25. if err != nil {
  26. dict := &dao.Dict{Code: code, DictKey: strconv.Itoa(dictId)}
  27. if err := dict.GetByCodeAndKey(); err != nil {
  28. logger.Logger.Errorf("GetByCodeAndKey err = %d \n", err)
  29. } else {
  30. name = dict.DictValue
  31. cache.Redis.Set(redisKey, name, -1)
  32. }
  33. }
  34. return name
  35. }
  36. func (s *dictService) GetByCode(code string) ([]dao.Dict, error) {
  37. dict := &dao.Dict{Code: code}
  38. return dict.GetByCode()
  39. }
  40. func (s *dictService) GetControlType(tenantId int, id int) string {
  41. return s.GetCacheDict(fmt.Sprintf(ControlTypeKey, tenantId, id), ControlType, id)
  42. }
  43. func (s *dictService) GetModuleName(tenantId int, id int) string {
  44. return s.GetCacheDict(fmt.Sprintf(ModuleTypeKey, tenantId, id), ModuleType, id)
  45. }
  46. func (s *dictService) GetSexName(tenantId int, id int) string {
  47. return s.GetCacheDict(fmt.Sprintf(SexNameKey, tenantId, id), Sex, id)
  48. }
  49. func (s *dictService) GetResolutionName(tenantId int, id int) string {
  50. return s.GetCacheDict(fmt.Sprintf(ResolutionTypeKey, tenantId, id), ResolutionType, id)
  51. }