Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
36599 vikas 1
package com.spice.profitmandi.web.req;
2
 
3
import com.spice.profitmandi.common.model.ProfitMandiConstants;
4
 
5
public class CompanyOfficeRequest {
6
 
7
    private ProfitMandiConstants.COMPANY_OFFICE_TYPE type;
8
    private String name;
9
    private String address;
10
    private String city;
11
    private String state;
12
    private Double lat;
13
    private Double lng;
14
    private Boolean active;
15
 
16
    public ProfitMandiConstants.COMPANY_OFFICE_TYPE getType() {
17
        return type;
18
    }
19
 
20
    public void setType(ProfitMandiConstants.COMPANY_OFFICE_TYPE type) {
21
        this.type = type;
22
    }
23
 
24
    public String getName() {
25
        return name;
26
    }
27
 
28
    public void setName(String name) {
29
        this.name = name;
30
    }
31
 
32
    public String getAddress() {
33
        return address;
34
    }
35
 
36
    public void setAddress(String address) {
37
        this.address = address;
38
    }
39
 
40
    public String getCity() {
41
        return city;
42
    }
43
 
44
    public void setCity(String city) {
45
        this.city = city;
46
    }
47
 
48
    public String getState() {
49
        return state;
50
    }
51
 
52
    public void setState(String state) {
53
        this.state = state;
54
    }
55
 
56
    public Double getLat() {
57
        return lat;
58
    }
59
 
60
    public void setLat(Double lat) {
61
        this.lat = lat;
62
    }
63
 
64
    public Double getLng() {
65
        return lng;
66
    }
67
 
68
    public void setLng(Double lng) {
69
        this.lng = lng;
70
    }
71
 
72
    public Boolean getActive() {
73
        return active;
74
    }
75
 
76
    public void setActive(Boolean active) {
77
        this.active = active;
78
    }
79
}