/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package br.com.elotech.websaude.integracao.cnes.backend.model;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

/**
 *
 * @author elotech
 */
@XmlRootElement(name = "DADOS_VINC_PROF")
public class VinculoProfissional implements java.io.Serializable {
    @XmlAttribute(name="COD_CBO")
    public String codCbo;
    @XmlAttribute(name="IND_VINC")
    public String indVinc;
    @XmlAttribute(name="CGHORAOUTR")
    public String cghoraoutr;
    @XmlAttribute(name="CG_HORAAMB")
    public String cgHoraamb;
    @XmlAttribute(name="CONSELHOID")
    public String conselhoid;
    @XmlAttribute(name="N_REGISTRO")
    public String nRegistro;
    @XmlAttribute(name="VINCULO_SUS")
    public String vinculoSus;
    @XmlAttribute(name="USUARIO")
    public String usuario;
    @XmlAttribute(name="CGHORAHOSP")
    public String cghorahosp;

    @Override
    public String toString() {
        return "\n\tVinculoProfissional{\n\t\t" + "codCbo=" + codCbo + ", indVinc=" + indVinc + ", cghoraoutr=" + cghoraoutr + ", cgHoraamb=" + cgHoraamb + ", conselhoid=" + conselhoid + ", nRegistro=" + nRegistro + ", vinculoSus=" + vinculoSus + ", usuario=" + usuario + ", cghorahosp=" + cghorahosp + "\n\t}";
    }
    
    
}
