package com.t2tierp.pafecf.vo; import java.util.Date; /** * <p>Title: T2Ti ERP</p> * <p>Description: PAF-ECF + TEF - Objeto de valor referente a tabela Empresa.</p> * * <p>The MIT License</p> * * <p>Copyright: Copyright (C) 2010 T2Ti.COM</p> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * The author may be contacted at: * t2ti.com@gmail.com</p> * * @author Albert Eije (T2Ti.COM) * @version 1.0 */ public class EmpresaVO { private Integer id; private String razaoSocial; private String nomeFantasia; private String CNPJ; private String inscricaoEstadual; private String inscricaoMunicipal; private String matrizFilial; private Date dataCadastro; private String endereco; private String complemento; private String bairro; private String cidade; private String UF; private String CEP; private String fone1; private String fone2; private String contato; private Integer codigoMunicipioIBGE; public EmpresaVO() { } /** * @return the id */ public Integer getId() { return id; } /** * @param id the id to set */ public void setId(Integer id) { this.id = id; } /** * @return the razaoSocial */ public String getRazaoSocial() { return razaoSocial; } /** * @param razaoSocial the razaoSocial to set */ public void setRazaoSocial(String razaoSocial) { this.razaoSocial = razaoSocial; } /** * @return the nomeFantasia */ public String getNomeFantasia() { return nomeFantasia; } /** * @param nomeFantasia the nomeFantasia to set */ public void setNomeFantasia(String nomeFantasia) { this.nomeFantasia = nomeFantasia; } /** * @return the CNPJ */ public String getCNPJ() { return CNPJ; } /** * @param CNPJ the CNPJ to set */ public void setCNPJ(String CNPJ) { this.CNPJ = CNPJ; } /** * @return the inscricaoEstadual */ public String getInscricaoEstadual() { return inscricaoEstadual; } /** * @param inscricaoEstadual the inscricaoEstadual to set */ public void setInscricaoEstadual(String inscricaoEstadual) { this.inscricaoEstadual = inscricaoEstadual; } /** * @return the inscricaoMunicipal */ public String getInscricaoMunicipal() { return inscricaoMunicipal; } /** * @param inscricaoMunicipal the inscricaoMunicipal to set */ public void setInscricaoMunicipal(String inscricaoMunicipal) { this.inscricaoMunicipal = inscricaoMunicipal; } /** * @return the matrizFilial */ public String getMatrizFilial() { return matrizFilial; } /** * @param matrizFilial the matrizFilial to set */ public void setMatrizFilial(String matrizFilial) { this.matrizFilial = matrizFilial; } /** * @return the dataCadastro */ public Date getDataCadastro() { return dataCadastro; } /** * @param dataCadastro the dataCadastro to set */ public void setDataCadastro(Date dataCadastro) { this.dataCadastro = dataCadastro; } /** * @return the endereco */ public String getEndereco() { return endereco; } /** * @param endereco the endereco to set */ public void setEndereco(String endereco) { this.endereco = endereco; } /** * @return the complemento */ public String getComplemento() { return complemento; } /** * @param complemento the complemento to set */ public void setComplemento(String complemento) { this.complemento = complemento; } /** * @return the bairro */ public String getBairro() { return bairro; } /** * @param bairro the bairro to set */ public void setBairro(String bairro) { this.bairro = bairro; } /** * @return the cidade */ public String getCidade() { return cidade; } /** * @param cidade the cidade to set */ public void setCidade(String cidade) { this.cidade = cidade; } /** * @return the UF */ public String getUF() { return UF; } /** * @param UF the UF to set */ public void setUF(String UF) { this.UF = UF; } /** * @return the CEP */ public String getCEP() { return CEP; } /** * @param CEP the CEP to set */ public void setCEP(String CEP) { this.CEP = CEP; } /** * @return the fone1 */ public String getFone1() { return fone1; } /** * @param fone1 the fone1 to set */ public void setFone1(String fone1) { this.fone1 = fone1; } /** * @return the fone2 */ public String getFone2() { return fone2; } /** * @param fone2 the fone2 to set */ public void setFone2(String fone2) { this.fone2 = fone2; } /** * @return the contato */ public String getContato() { return contato; } /** * @param contato the contato to set */ public void setContato(String contato) { this.contato = contato; } /** * @return the codigoMunicipioIBGE */ public Integer getCodigoMunicipioIBGE() { return codigoMunicipioIBGE; } /** * @param codigoMunicipioIBGE the codigoMunicipioIBGE to set */ public void setCodigoMunicipioIBGE(Integer codigoMunicipioIBGE) { this.codigoMunicipioIBGE = codigoMunicipioIBGE; } }