Commit 8643c553 authored by yanzg's avatar yanzg

修复异常提醒,从而正确的跟踪异常信息

parent 951e5ae4
......@@ -540,11 +540,21 @@ public class ObjectHelper {
* @param froms 来源对象
*/
public static void writeWithFrom(Object to, Object... froms) {
writeWithFrom(false, to, froms);
}
/**
* 根据来源数据,往目标中写入数据
*
* @param to 目标对象
* @param froms 来源对象
*/
public static void writeWithFrom(boolean emptyWrite, Object to, Object... froms) {
for (Object from : froms) {
if (from instanceof Map) {
writeWithFromMap(to, (Map) from);
writeWithFromMap(emptyWrite, to, (Map) from);
} else {
ObjectHelper.writeWithFromClass(to, from);
ObjectHelper.writeWithFromClass(emptyWrite, to, from);
}
}
}
......
......@@ -12,18 +12,28 @@ public abstract class DataDaoKey<T> implements DataDaoKeyBase<T> {
/**
* 将当前对象的属性,写入到历史对象中,用于更新函数
*
* @param history
* @param now
* @param history 历史数据
* @param now 当前数据
*/
@Override
public boolean set(T history, T now) {
return set(history, now, false);
}
/**
* 将当前对象的属性,写入到历史对象中,用于更新函数
*
* @param history 历史数据
* @param now 当前数据
*/
public boolean set(T history, T now, boolean emptyWrite) {
if (history == now) {
return true;
}
if (history.equals(now)) {
return false;
}
ObjectHelper.writeWithFrom(history, now);
ObjectHelper.writeWithFrom(emptyWrite, history, now);
return true;
}
}
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