Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.model;

import java.time.LocalDate;

public class ServiceApplicableModel {
    private String naText;
    private int fofoId;
    private int serviceId;
    private LocalDate followUpDate;
    private String followUpBrand;

    public String getNaText() {
        return naText;
    }

    public void setNaText(String naText) {
        this.naText = naText;
    }

    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 getFollowUpBrand() {
        return followUpBrand;
    }

    public void setFollowUpBrand(String followUpBrand) {
        this.followUpBrand = followUpBrand;
    }

    public LocalDate getFollowUpDate() {
        return followUpDate;
    }

    public void setFollowUpDate(LocalDate followUpDate) {
        this.followUpDate = followUpDate;
    }

    @Override
    public String toString() {
        return "ServiceApplicableModel{" +
                "naText='" + naText + '\'' +
                ", fofoId=" + fofoId +
                ", serviceId=" + serviceId +
                ", followUpDate=" + followUpDate +
                ", followUpBrand='" + followUpBrand + '\'' +
                '}';
    }
}