- Timestamp:
- 01/05/23 04:11:40 (23 months ago)
- Branches:
- main
- Children:
- 1bd8d1e
- Parents:
- 7d43957
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/autopartz/model/Administrator.java
r7d43957 r676144b 27 27 if (o == null || Hibernate.getClass(this) != Hibernate.getClass(o)) return false; 28 28 Administrator that = (Administrator) o; 29 return ID_user != null && Objects.equals(ID_user, that.ID_user);29 return id != null && Objects.equals(id, that.id); 30 30 } 31 31
Note:
See TracChangeset
for help on using the changeset viewer.