View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.controller;import java.time.LocalDate;public class LeadWeakWiseModel {private LocalDate month;public LocalDate getMonth() {return month;}public void setMonth(LocalDate month) {this.month = month;}@Overridepublic String toString() {return "LeadWeakWiseModel [month=" + month + "]";}@Overridepublic int hashCode() {final int prime = 31;int result = 1;result = prime * result + ((month == null) ? 0 : month.hashCode());return result;}@Overridepublic boolean equals(Object obj) {if (this == obj)return true;if (obj == null)return false;if (getClass() != obj.getClass())return false;LeadWeakWiseModel other = (LeadWeakWiseModel) obj;if (month == null) {if (other.month != null)return false;} else if (!month.equals(other.month))return false;return true;}}