Merge e79811f8f7dc1b3855fc2837f71806cace128f2a into fb91e2627f412331214863455f738d0e58639925

This commit is contained in:
Joe 2025-01-28 22:44:47 +00:00 committed by GitHub
commit e319a73785
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -125,6 +125,11 @@ public class Menu implements Serializable {
private Integer isDeleted;
@Override
public int hashCode() {
return (this.getId() == null) ? -1 : this.getId();
}
@Override
public boolean equals(Object obj) {
if (this == obj) {