SysDictUtil.kt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.gxzc.zen.api.util
  2. import com.gxzc.zen.api.sys.model.SysDictValue
  3. import com.gxzc.zen.common.util.SpringContextHolder
  4. import com.gxzc.zen.rpc.api.sys.RDictService
  5. /**
  6. * 字典工具类
  7. * @author NorthLan
  8. * @date 2018/5/7
  9. * @url https://noahlan.com
  10. */
  11. object SysDictUtil {
  12. // private var dictValueService: RDictService? = null
  13. // get() {
  14. // if (field == null) {
  15. // field = RpcUtil.getReference(RDictService::class.java, "1.0")
  16. // }
  17. // return field
  18. // }
  19. private var dictValueService: RDictService? = null
  20. get() {
  21. if (field == null) {
  22. field = SpringContextHolder.getBean(RDictService::class.java)
  23. }
  24. return field
  25. }
  26. /**
  27. * 获取所有字典值列表
  28. */
  29. fun getAll(): MutableList<SysDictValue> {
  30. return dictValueService!!.getListCacheable()
  31. }
  32. /**
  33. * 根据code前缀获取字典值列表
  34. */
  35. fun getListByPrefix(prefix: String): MutableList<SysDictValue> {
  36. return dictValueService!!.getDictValueListByTypeCode(prefix)
  37. }
  38. /**
  39. * 根据code和value直接获取字典值
  40. */
  41. fun getValueByCV(code: String, value: String): SysDictValue? {
  42. return dictValueService!!.getDictValueByCodeAndValue(code, value)
  43. }
  44. /**
  45. * 根据prefix和value直接获取字典值
  46. */
  47. fun getValueByPV(prefix: String, value: String): SysDictValue? {
  48. return dictValueService!!.getDictValueByPrefixAndValue(prefix, value)
  49. }
  50. }