Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.entity.fofo;import javax.persistence.*;import java.time.LocalDate;@Entity@Table(name = "fofo.brand_wise_followUp")public class BrandWiseFollowUp {@Id@GeneratedValue(strategy = GenerationType.IDENTITY)@Column(name = "id")private int id;@Column(name = "fofoId")private int fofoId;@Column(name = "serviceId")private int serviceId;@Column(name = "brand")private String brand;@Column(name = "followUpDate")private LocalDate followUpDate;public int getId() {return id;}public void setId(int id) {this.id = id;}public int getFofoId() {return fofoId;}public void setFofoId(int fofoId) {this.fofoId = fofoId;}public int getServiceId() {return serviceId;}public void setServiceId(int serviceId) {this.serviceId = serviceId;}public String getBrand() {return brand;}public void setBrand(String brand) {this.brand = brand;}public LocalDate getFollowUpDate() {return followUpDate;}public void setFollowUpDate(LocalDate followUpDate) {this.followUpDate = followUpDate;}@Overridepublic String toString() {return "BrandWiseFollowUp{" +"id=" + id +", fofoId=" + fofoId +", serviceId=" + serviceId +", brand='" + brand +", followUpDate=" + followUpDate +'}';}}