Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.web.req;

import com.spice.profitmandi.common.model.ProfitMandiConstants;

public class CompanyOfficeRequest {

    private ProfitMandiConstants.COMPANY_OFFICE_TYPE type;
    private String name;
    private String address;
    private String city;
    private String state;
    private Double lat;
    private Double lng;
    private Boolean active;

    public ProfitMandiConstants.COMPANY_OFFICE_TYPE getType() {
        return type;
    }

    public void setType(ProfitMandiConstants.COMPANY_OFFICE_TYPE type) {
        this.type = type;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public String getState() {
        return state;
    }

    public void setState(String state) {
        this.state = state;
    }

    public Double getLat() {
        return lat;
    }

    public void setLat(Double lat) {
        this.lat = lat;
    }

    public Double getLng() {
        return lng;
    }

    public void setLng(Double lng) {
        this.lng = lng;
    }

    public Boolean getActive() {
        return active;
    }

    public void setActive(Boolean active) {
        this.active = active;
    }
}