dictService.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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" => ControlType = "operation_his_type" 2022/12/31 17:18
  14. ControlType = "operation_his_type"
  15. ModuleType = "module_his_type"
  16. Sex = "sex"
  17. ResolutionType = "resolution_type"
  18. SexNameKey = "%d:sys:sex_name:%d"
  19. ModuleTypeKey = "%d:dict:module_type:%d"
  20. ControlTypeKey = "%d:dict:control_type:%d"
  21. ResolutionTypeKey = "%d:dict:resolution_type:%d"
  22. )
  23. func (s *dictService) GetCacheDict(redisKey, code string, dictId int) string {
  24. var name string
  25. name, err := cache.Redis.Get(redisKey).Result()
  26. if err != nil {
  27. dict := &dao.Dict{Code: code, DictKey: strconv.Itoa(dictId)}
  28. if err := dict.GetByCodeAndKey(); err != nil {
  29. logger.Logger.Errorf("GetByCodeAndKey err = %d \n", err)
  30. } else {
  31. name = dict.DictValue
  32. cache.Redis.Set(redisKey, name, -1)
  33. }
  34. }
  35. return name
  36. }
  37. func (s *dictService) GetByCode(code string) ([]dao.Dict, error) {
  38. dict := &dao.Dict{Code: code}
  39. return dict.GetByCode()
  40. }
  41. func (s *dictService) GetControlType(tenantId string, id int) string {
  42. return s.GetCacheDict(fmt.Sprintf(ControlTypeKey, tenantId, id), ControlType, id)
  43. }
  44. func (s *dictService) GetModuleName(tenantId string, id int) string {
  45. return s.GetCacheDict(fmt.Sprintf(ModuleTypeKey, tenantId, id), ModuleType, id)
  46. }
  47. func (s *dictService) GetSexName(tenantId string, id int) string {
  48. return s.GetCacheDict(fmt.Sprintf(SexNameKey, tenantId, id), Sex, id)
  49. }
  50. func (s *dictService) GetResolutionName(tenantId string, id int) string {
  51. return s.GetCacheDict(fmt.Sprintf(ResolutionTypeKey, tenantId, id), ResolutionType, id)
  52. }