Browse Source

Bean 工具类 类型转换等

NorthLan 7 years ago
parent
commit
ac9bcbbeca
1 changed files with 15 additions and 0 deletions
  1. 15 0
      zen-core/src/main/kotlin/com/gxzc/zen/common/util/BeanUtil.kt

+ 15 - 0
zen-core/src/main/kotlin/com/gxzc/zen/common/util/BeanUtil.kt

@@ -0,0 +1,15 @@
+package com.gxzc.zen.common.util
+
+/**
+ * Bean工具类
+ * @author NorthLan
+ * @date 2018/3/29
+ * @url https://noahlan.com
+ */
+@Suppress("UNCHECKED_CAST")
+object BeanUtil {
+
+    fun <K, V> convertToMap(data: Any): LinkedHashMap<K, V>? {
+        return data as? LinkedHashMap<K, V>?
+    }
+}