Browse Source

添加字典接口方法,根据code取对应字典值

NorthLan 6 years ago
parent
commit
c3668c2a9f
1 changed files with 5 additions and 0 deletions
  1. 5 0
      zen-api/src/main/kotlin/com/gxzc/zen/rpc/api/sys/RDictService.kt

+ 5 - 0
zen-api/src/main/kotlin/com/gxzc/zen/rpc/api/sys/RDictService.kt

@@ -28,4 +28,9 @@ interface RDictService {
      * 根据code前缀与value获取指定字典值
      */
     fun getDictValueByPrefixAndValue(prefix: String, value: String): SysDictValue?
+
+    /**
+     * 根据code值取出指定字典值
+     */
+    fun getDictValueByCode(code: String): SysDictValue?
 }