Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.model;import java.time.LocalDateTime;import java.util.Objects;public class FofoFirstBillingModel {private int fofoId;private LocalDateTime billingDate;public FofoFirstBillingModel(int fofoId, LocalDateTime billingDate) {this.fofoId = fofoId;this.billingDate = billingDate;}@Overridepublic String toString() {return "FofoFirstBillingModel{" +"fofoId=" + fofoId +", billingDate=" + billingDate +'}';}@Overridepublic boolean equals(Object o) {if (this == o) return true;if (o == null || getClass() != o.getClass()) return false;FofoFirstBillingModel that = (FofoFirstBillingModel) o;return fofoId == that.fofoId && Objects.equals(billingDate, that.billingDate);}@Overridepublic int hashCode() {return Objects.hash(fofoId, billingDate);}public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public LocalDateTime getBillingDate() {return billingDate;}public void setBillingDate(LocalDateTime billingDate) {this.billingDate = billingDate;}}