Commit 26d0bcb5 authored by yanzg's avatar yanzg

常规BUG的修改

parent 086becc7
...@@ -466,6 +466,18 @@ public class ObjectHelper { ...@@ -466,6 +466,18 @@ public class ObjectHelper {
} }
/**
* 根据来源数据,往目标中写入数据
*
* @param tos 目标对象
* @param froms 来源对象
*/
public static void writeArrayWithFrom(List tos, Object... froms) {
for (Object to : tos) {
writeWithFrom(to, froms);
}
}
/** /**
* 根据来源数据,往目标中写入数据 * 根据来源数据,往目标中写入数据
* *
......
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