Commit 4274bfcc authored by yanzg's avatar yanzg

修改实体位置

parent 7cd6e693
......@@ -17,6 +17,9 @@ public abstract class DataDaoKey<T> implements DataDaoKeyBase<T> {
*/
@Override
public boolean set(T history, T now) {
if (history == now) {
return true;
}
if (history.equals(now)) {
return false;
}
......
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