Subversion Repositories SmartDukaan

Rev

Rev 2768 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2768 mandeep.dh 1
/**
2
 * 
3
 */
4
package in.shop2020.metamodel.core;
5
 
6
import java.util.Date;
7
import java.util.List;
8
 
9
/**
10
 * @author mandeep Model object for Service centre of a brand.
11
 */
12
public class ServiceCentre {
13
    private long         id;
14
    private String       name;
15
 
16
    private long         brandId;
2838 mandeep.dh 17
    private SpecialPage  brand;
2768 mandeep.dh 18
 
19
    private String       city;
20
    private String       address;
21
    private String       state;
22
    private List<String> phoneNumbers;
23
    private List<String> emailAddresses;
24
    private long         pinCode;
25
    private Date         openingTime;
26
    private Date         closingTime;
27
 
28
    public long getId() {
29
        return id;
30
    }
31
 
32
    public void setId(long id) {
33
        this.id = id;
34
    }
35
 
36
    public String getName() {
37
        return name;
38
    }
39
 
40
    public void setName(String name) {
41
        this.name = name;
42
    }
43
 
44
    public long getBrandId() {
45
        return brandId;
46
    }
47
 
48
    public void setBrandId(long brandId) {
49
        this.brandId = brandId;
50
    }
51
 
52
    public String getCity() {
53
        return city;
54
    }
55
 
56
    public void setCity(String city) {
57
        this.city = city;
58
    }
59
 
60
    public String getAddress() {
61
        return address;
62
    }
63
 
64
    public void setAddress(String address) {
65
        this.address = address;
66
    }
67
 
68
    public String getState() {
69
        return state;
70
    }
71
 
72
    public void setState(String state) {
73
        this.state = state;
74
    }
75
 
76
    public List<String> getPhoneNumbers() {
77
        return phoneNumbers;
78
    }
79
 
80
    public void setPhoneNumbers(List<String> phoneNumbers) {
81
        this.phoneNumbers = phoneNumbers;
82
    }
83
 
84
    public List<String> getEmailAddresses() {
85
        return emailAddresses;
86
    }
87
 
88
    public void setEmailAddresses(List<String> emailAddresses) {
89
        this.emailAddresses = emailAddresses;
90
    }
91
 
92
    public long getPinCode() {
93
        return pinCode;
94
    }
95
 
96
    public void setPinCode(long pinCode) {
97
        this.pinCode = pinCode;
98
    }
99
 
100
    public Date getOpeningTime() {
101
        return openingTime;
102
    }
103
 
104
    public void setOpeningTime(Date openingTime) {
105
        this.openingTime = openingTime;
106
    }
107
 
108
    public Date getClosingTime() {
109
        return closingTime;
110
    }
111
 
112
    public void setClosingTime(Date closingTime) {
113
        this.closingTime = closingTime;
114
    }
115
}