Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
36321 vikas 1
package com.spice.profitmandi.web.model;
2
 
3
import java.time.LocalDate;
4
 
5
public class ServiceApplicableModel {
6
    private String naText;
7
    private int fofoId;
8
    private int serviceId;
9
    private LocalDate followUpDate;
10
    private String followUpBrand;
11
 
12
    public String getNaText() {
13
        return naText;
14
    }
15
 
16
    public void setNaText(String naText) {
17
        this.naText = naText;
18
    }
19
 
20
    public int getFofoId() {
21
        return fofoId;
22
    }
23
 
24
    public void setFofoId(int fofoId) {
25
        this.fofoId = fofoId;
26
    }
27
 
28
    public int getServiceId() {
29
        return serviceId;
30
    }
31
 
32
    public void setServiceId(int serviceId) {
33
        this.serviceId = serviceId;
34
    }
35
 
36
    public String getFollowUpBrand() {
37
        return followUpBrand;
38
    }
39
 
40
    public void setFollowUpBrand(String followUpBrand) {
41
        this.followUpBrand = followUpBrand;
42
    }
43
 
44
    public LocalDate getFollowUpDate() {
45
        return followUpDate;
46
    }
47
 
48
    public void setFollowUpDate(LocalDate followUpDate) {
49
        this.followUpDate = followUpDate;
50
    }
51
 
52
    @Override
53
    public String toString() {
54
        return "ServiceApplicableModel{" +
55
                "naText='" + naText + '\'' +
56
                ", fofoId=" + fofoId +
57
                ", serviceId=" + serviceId +
58
                ", followUpDate=" + followUpDate +
59
                ", followUpBrand='" + followUpBrand + '\'' +
60
                '}';
61
    }
62
}