19 package org.turro.financials.pos;
21 import java.io.Serializable;
22 import java.util.Date;
23 import java.util.Objects;
24 import org.turro.financials.entity.Contract;
34 private Date registerDate;
39 hash = 79 * hash + Objects.hashCode(this.contract);
40 hash = 79 * hash + this.pos;
41 hash = 79 * hash + Objects.hashCode(this.registerDate);
53 if (getClass() != obj.getClass()) {
57 if (this.pos != other.pos) {
60 if (!Objects.equals(
this.contract, other.contract)) {
63 return Objects.
equals(this.registerDate, other.registerDate);
boolean equals(Object obj)