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