dictService.go 1.9 KB

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