Commit 14788401 by s_guodong

update

parent 8836de84
......@@ -60,6 +60,8 @@ public class ReflectUtil {
} else if ("java.util.List".equals(type.getName())) {
// list数据类型
declaredField.set(baseVo, o);
} else if ("com.brilliance.mda.runtime.mda.IStream".equals(type.getName())) {
declaredField.set(baseVo, o);
} else {
// 对象类型
Object typeO = type.newInstance();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment