|
@@ -0,0 +1,49 @@
|
|
|
+package com.gxzc.zen.api.util
|
|
|
+
|
|
|
+import com.gxzc.zen.api.sys.model.SysDictValue
|
|
|
+import com.gxzc.zen.api.sys.service.ISysDictValueService
|
|
|
+import com.gxzc.zen.common.util.SpringContextHolder
|
|
|
+
|
|
|
+/**
|
|
|
+ * 字典工具类
|
|
|
+ * @author NorthLan
|
|
|
+ * @date 2018/5/7
|
|
|
+ * @url https://noahlan.com
|
|
|
+ */
|
|
|
+object SysDictUtil {
|
|
|
+ private var dictValueService = SpringContextHolder.getBean(ISysDictValueService::class.java)
|
|
|
+ get() {
|
|
|
+ if (field == null) {
|
|
|
+ field = SpringContextHolder.getBean(ISysDictValueService::class.java)
|
|
|
+ }
|
|
|
+ return field
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取所有字典值列表
|
|
|
+ */
|
|
|
+ fun getAll(): MutableList<SysDictValue> {
|
|
|
+ return dictValueService!!.getListCacheable()
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据code前缀获取字典值列表
|
|
|
+ */
|
|
|
+ fun getListByPrefix(prefix: String): MutableList<SysDictValue> {
|
|
|
+ return dictValueService!!.getDictValueListByTypeCode(prefix)
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据code和value直接获取字典值
|
|
|
+ */
|
|
|
+ fun getValueByCV(code: String, value: String): SysDictValue? {
|
|
|
+ return dictValueService!!.getDictValueByCodeAndValue(code, value)
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据prefix和value直接获取字典值
|
|
|
+ */
|
|
|
+ fun getValueByPV(prefix: String, value: String): SysDictValue? {
|
|
|
+ return dictValueService!!.getDictValueByPrefixAndValue(prefix, value)
|
|
|
+ }
|
|
|
+}
|