|
|
@@ -1,5 +1,7 @@
|
|
|
package com.sheep.gamegroup.model.entity;
|
|
|
|
|
|
+import android.support.annotation.Nullable;
|
|
|
+
|
|
|
import com.kfzs.duanduan.utils.NumberFormatUtils;
|
|
|
import com.sheep.gamegroup.util.string.SpannableSb;
|
|
|
import com.sheep.jiuyan.samllsheep.R;
|
|
|
@@ -141,4 +143,9 @@ public class UserFootprint {
|
|
|
}
|
|
|
return spannableSb.getSsb();
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean equals(@Nullable Object obj) {
|
|
|
+ return obj instanceof UserFootprint && ((UserFootprint) obj).getId() == id;
|
|
|
+ }
|
|
|
}
|