in service/src/main/java/org/apache/fineract/cn/customer/internal/repository/DocumentPageEntity.java [107:113]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
DocumentPageEntity that = (DocumentPageEntity) o;
return Objects.equals(document, that.document) &&
Objects.equals(pageNumber, that.pageNumber);
}