ReciboTramiteEnviadoDTO.php 761 Bytes
<?php

require_once dirname(__FILE__) . '/../../../SEI.php';

class ReciboTramiteEnviadoDTO extends InfraDTO {

    public function getStrNomeTabela() {
        return "md_pen_recibo_tramite_enviado";
    }

    public function montar() {
        $this->adicionarAtributoTabela(InfraDTO::$PREFIXO_STR, 'NumeroRegistro', 'numero_registro');
        $this->adicionarAtributoTabela(InfraDTO::$PREFIXO_NUM, 'IdTramite', 'id_tramite');
        $this->adicionarAtributoTabela(InfraDTO::$PREFIXO_DTH, 'Recebimento', 'dth_recebimento');
        $this->adicionarAtributoTabela(InfraDTO::$PREFIXO_STR, 'CadeiaCertificado', 'cadeia_certificado');
        $this->adicionarAtributoTabela(InfraDTO::$PREFIXO_STR, 'HashAssinatura', 'hash_assinatura');
    }
}