PenProtocoloDTO.php
587 Bytes
<?php
/**
*
* @autor Join Tecnologia
*/
require_once dirname(__FILE__) . '/../../../SEI.php';
class PenProtocoloDTO extends InfraDTO {
public function getStrNomeTabela() {
return 'md_pen_protocolo';
}
public function montar() {
$this->adicionarAtributoTabela(InfraDTO::$PREFIXO_DBL, 'IdProtocolo', 'id_protocolo');
$this->adicionarAtributoTabela(InfraDTO::$PREFIXO_STR, 'SinObteveRecusa', 'sin_obteve_recusa');
$this->configurarPK('IdProtocolo',InfraDTO::$TIPO_PK_INFORMADO);
}
}