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