src/Entity/GtbAnag.php line 980

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use DateTime;
  4. class  GtbAnag extends AbstractEntityBase {
  5.     /**
  6.      * @var String
  7.      */
  8.     private $codAnag null;
  9.     /**
  10.      * @var String
  11.      */
  12.     private $ragSoc null;
  13.     /**
  14.      * @var String
  15.      */
  16.     private $indirizzo null;
  17.     /**
  18.      * @var String
  19.      */
  20.     private $cap null;
  21.     /**
  22.      * @var String
  23.      */
  24.     private $citta null;
  25.     /**
  26.      * @var String
  27.      */
  28.     private $prov null;
  29.     /**
  30.      * @var String
  31.      */
  32.     private $nazione null;
  33.     /**
  34.      * @var String
  35.      */
  36.     private $telefono null;
  37.     /**
  38.      * @var String
  39.      */
  40.     private $fax null;
  41.     /**
  42.      * @var String
  43.      */
  44.     private $partIva null;
  45.     /**
  46.      * @var String
  47.      */
  48.     private $codFisc null;
  49.     /**
  50.      * @var String
  51.      */
  52.     private $note null;
  53.     /**
  54.      * @var String
  55.      */
  56.     private $personaRif null;
  57.     /**
  58.      * @var String
  59.      */
  60.     private $allegato null;
  61.     /**
  62.      * @var String
  63.      */
  64.     private $eMail null;
  65.     /**
  66.      * @var String
  67.      */
  68.     private $eMailPec null;
  69.     /**
  70.      * @var String
  71.      */
  72.     private $flagPersonaFg null;
  73.     /**
  74.      * @var String
  75.      */
  76.     private $sesso null;
  77.     /**
  78.      * @var String
  79.      */
  80.     private $codCentroAzi null;
  81.     /**
  82.      * @var String
  83.      */
  84.     private $codRuop null;
  85.     /**
  86.      * @var DateTime
  87.      */
  88.     private $dataNascita null;
  89.     /**
  90.      * @var string
  91.      */
  92.     private $luogoNascita null;
  93.     /**
  94.      * @var string
  95.      */
  96.     private $provNascita null;
  97.     /**
  98.      * @var string
  99.      */
  100.     private $nome null;
  101.     /**
  102.      * @var string
  103.      */
  104.     private $ragSoc2 null;
  105.     /**
  106.      * @var int
  107.      */
  108.     private $classeMerito null;
  109.     /**
  110.      * @var DateTime
  111.      */
  112.     private $dataIns null;
  113.     /**
  114.      * @var string
  115.      */
  116.     private $numCell null;
  117.     /**
  118.      * @var string
  119.      */
  120.     private $cciaa null;
  121.     /**
  122.      * @var string
  123.      */
  124.     private $tipoAzienda null;
  125.     /**
  126.      * @var string
  127.      */
  128.     private $cuuPa null;
  129.     /**
  130.      * @var string
  131.      */
  132.     private $cognome null;
  133.     /**
  134.      * @var string
  135.      */
  136.     private $diacod null;
  137.     /**
  138.      * @var double
  139.      */
  140.     private $lat null;
  141.     /**
  142.      * @var double
  143.      */
  144.     private $lng null;
  145.     /**
  146.      * @var string
  147.      */
  148.     private $flagInformativa null;
  149.     /**
  150.      * @var string
  151.      */
  152.     private $flagConsenso null;
  153.     /**
  154.      * @var string
  155.      */
  156.     private $regFisc null;
  157.     /**
  158.      * @var string
  159.      */
  160.     private $precode null;
  161.     /**
  162.      * @var bool
  163.      */
  164.     private $insDestinatario false;
  165.     /**
  166.      * @var int
  167.      */
  168.     private $codSoggetto null;
  169.     /**
  170.      * @var array
  171.      */
  172.     private $vtbCliePersRif = [];
  173.     /**
  174.      * @var array
  175.      */
  176.     private $vtbDest = [];
  177.     /**
  178.      * @var array
  179.      */
  180.     private $vtbClieFido = [];
  181.     /**
  182.      * @var array
  183.      */
  184.     private $ctbPlafondIva = [];
  185.     /**
  186.      * @var array
  187.      */
  188.     private $ttbClieLine = [];
  189.     /**
  190.      * @var array
  191.      */
  192.     private $gtbAnagNote = [];
  193.     /**
  194.      * @var array
  195.      */
  196.     private $gtbAnagConai = [];
  197.     /**
  198.      * @var VtbClie
  199.      */
  200.     private $vtbClie null;
  201.     /**
  202.      * @var AtbForn
  203.      */
  204.     private $atbForn null;
  205.     /**
  206.      * @var
  207.      */
  208.     private $oltbSoggetti null;
  209.     /**
  210.      * @return String
  211.      */
  212.     public function getCodAnag(): ?string {
  213.         return $this->codAnag;
  214.     }
  215.     /**
  216.      * @param String $codAnag
  217.      */
  218.     public function setCodAnag(?string $codAnag): void {
  219.         $this->codAnag $codAnag;
  220.     }
  221.     /**
  222.      * @return String
  223.      */
  224.     public function getRagSoc(): ?string {
  225.         return $this->ragSoc;
  226.     }
  227.     /**
  228.      * @param String $ragSoc
  229.      */
  230.     public function setRagSoc(?string $ragSoc): void {
  231.         $this->ragSoc $ragSoc;
  232.     }
  233.     /**
  234.      * @return String
  235.      */
  236.     public function getIndirizzo(): ?string {
  237.         return $this->indirizzo;
  238.     }
  239.     /**
  240.      * @param String $indirizzo
  241.      */
  242.     public function setIndirizzo(?string $indirizzo): void {
  243.         $this->indirizzo $indirizzo;
  244.     }
  245.     /**
  246.      * @return String
  247.      */
  248.     public function getCap(): ?string {
  249.         return $this->cap;
  250.     }
  251.     /**
  252.      * @param String $cap
  253.      */
  254.     public function setCap(?string $cap): void {
  255.         $this->cap $cap;
  256.     }
  257.     /**
  258.      * @return String
  259.      */
  260.     public function getCitta(): ?string {
  261.         return $this->citta;
  262.     }
  263.     /**
  264.      * @param String $citta
  265.      */
  266.     public function setCitta(?string $citta): void {
  267.         $this->citta $citta;
  268.     }
  269.     /**
  270.      * @return String
  271.      */
  272.     public function getProv(): ?string {
  273.         return $this->prov;
  274.     }
  275.     /**
  276.      * @param String $prov
  277.      */
  278.     public function setProv(?string $prov): void {
  279.         $this->prov $prov;
  280.     }
  281.     /**
  282.      * @return String
  283.      */
  284.     public function getNazione(): ?string {
  285.         return $this->nazione;
  286.     }
  287.     /**
  288.      * @param String $nazione
  289.      */
  290.     public function setNazione(?string $nazione): void {
  291.         $this->nazione $nazione;
  292.     }
  293.     /**
  294.      * @return String
  295.      */
  296.     public function getTelefono(): ?string {
  297.         return $this->telefono;
  298.     }
  299.     /**
  300.      * @param String $telefono
  301.      */
  302.     public function setTelefono(?string $telefono): void {
  303.         $this->telefono $telefono;
  304.     }
  305.     /**
  306.      * @return String
  307.      */
  308.     public function getFax(): ?string {
  309.         return $this->fax;
  310.     }
  311.     /**
  312.      * @param String $fax
  313.      */
  314.     public function setFax(?string $fax): void {
  315.         $this->fax $fax;
  316.     }
  317.     /**
  318.      * @return String
  319.      */
  320.     public function getPartIva(): ?string {
  321.         return $this->partIva;
  322.     }
  323.     /**
  324.      * @param String $partIva
  325.      */
  326.     public function setPartIva(?string $partIva): void {
  327.         $this->partIva $partIva;
  328.     }
  329.     /**
  330.      * @return String
  331.      */
  332.     public function getCodFisc(): ?string {
  333.         return $this->codFisc;
  334.     }
  335.     /**
  336.      * @param String $codFisc
  337.      */
  338.     public function setCodFisc(?string $codFisc): void {
  339.         $this->codFisc $codFisc;
  340.     }
  341.     /**
  342.      * @return String
  343.      */
  344.     public function getNote(): ?string {
  345.         return $this->note;
  346.     }
  347.     /**
  348.      * @param String $note
  349.      */
  350.     public function setNote(?string $note): void {
  351.         $this->note $note;
  352.     }
  353.     /**
  354.      * @return String
  355.      */
  356.     public function getPersonaRif(): ?string {
  357.         return $this->personaRif;
  358.     }
  359.     /**
  360.      * @param String $personaRif
  361.      */
  362.     public function setPersonaRif(?string $personaRif): void {
  363.         $this->personaRif $personaRif;
  364.     }
  365.     /**
  366.      * @return String
  367.      */
  368.     public function getAllegato(): ?string {
  369.         return $this->allegato;
  370.     }
  371.     /**
  372.      * @param String $allegato
  373.      */
  374.     public function setAllegato(?string $allegato): void {
  375.         $this->allegato $allegato;
  376.     }
  377.     /**
  378.      * @return String
  379.      */
  380.     public function getEMail(): ?string {
  381.         return $this->eMail;
  382.     }
  383.     /**
  384.      * @param String $eMail
  385.      */
  386.     public function setEMail(?string $eMail): void {
  387.         $this->eMail $eMail;
  388.     }
  389.     /**
  390.      * @return String
  391.      */
  392.     public function getEMailPec(): ?string {
  393.         return $this->eMailPec;
  394.     }
  395.     /**
  396.      * @param String $eMailPec
  397.      */
  398.     public function setEMailPec(?string $eMailPec): void {
  399.         $this->eMailPec $eMailPec;
  400.     }
  401.     /**
  402.      * @return String
  403.      */
  404.     public function getFlagPersonaFg(): ?string {
  405.         return $this->flagPersonaFg;
  406.     }
  407.     /**
  408.      * @param String $flagPersonaFg
  409.      */
  410.     public function setFlagPersonaFg(?string $flagPersonaFg): void {
  411.         $this->flagPersonaFg $flagPersonaFg;
  412.     }
  413.     /**
  414.      * @return String
  415.      */
  416.     public function getSesso(): ?string {
  417.         return $this->sesso;
  418.     }
  419.     /**
  420.      * @param String $sesso
  421.      */
  422.     public function setSesso(?string $sesso): void {
  423.         $this->sesso $sesso;
  424.     }
  425.     /**
  426.      * @return String
  427.      */
  428.     public function getCodCentroAzi(): ?string {
  429.         return $this->codCentroAzi;
  430.     }
  431.     /**
  432.      * @param String $codCentroAzi
  433.      */
  434.     public function setCodCentroAzi(?string $codCentroAzi): void {
  435.         $this->codCentroAzi $codCentroAzi;
  436.     }
  437.     /**
  438.      * @return String
  439.      */
  440.     public function getCodRuop(): ?string {
  441.         return $this->codRuop;
  442.     }
  443.     /**
  444.      * @param String $codRuop
  445.      */
  446.     public function setCodRuop(?string $codRuop): void {
  447.         $this->codRuop $codRuop;
  448.     }
  449.     /**
  450.      * @return DateTime
  451.      */
  452.     public function getDataNascita(): ?DateTime {
  453.         return $this->dataNascita;
  454.     }
  455.     /**
  456.      * @param DateTime $dataNascita
  457.      */
  458.     public function setDataNascita(?DateTime $dataNascita): void {
  459.         $this->dataNascita $dataNascita;
  460.     }
  461.     /**
  462.      * @return string
  463.      */
  464.     public function getLuogoNascita(): ?string {
  465.         return $this->luogoNascita;
  466.     }
  467.     /**
  468.      * @param string $luogoNascita
  469.      */
  470.     public function setLuogoNascita(?string $luogoNascita): void {
  471.         $this->luogoNascita $luogoNascita;
  472.     }
  473.     /**
  474.      * @return string
  475.      */
  476.     public function getProvNascita(): ?string {
  477.         return $this->provNascita;
  478.     }
  479.     /**
  480.      * @param string $provNascita
  481.      */
  482.     public function setProvNascita(?string $provNascita): void {
  483.         $this->provNascita $provNascita;
  484.     }
  485.     /**
  486.      * @return string
  487.      */
  488.     public function getNome(): ?string {
  489.         return $this->nome;
  490.     }
  491.     /**
  492.      * @param string $nome
  493.      */
  494.     public function setNome(?string $nome): void {
  495.         $this->nome $nome;
  496.     }
  497.     /**
  498.      * @return string
  499.      */
  500.     public function getRagSoc2(): ?string {
  501.         return $this->ragSoc2;
  502.     }
  503.     /**
  504.      * @param string $ragSoc2
  505.      */
  506.     public function setRagSoc2(?string $ragSoc2): void {
  507.         $this->ragSoc2 $ragSoc2;
  508.     }
  509.     /**
  510.      * @return int
  511.      */
  512.     public function getClasseMerito(): ?int {
  513.         return $this->classeMerito;
  514.     }
  515.     /**
  516.      * @param int $classeMerito
  517.      */
  518.     public function setClasseMerito(?int $classeMerito): void {
  519.         $this->classeMerito $classeMerito;
  520.     }
  521.     /**
  522.      * @return DateTime
  523.      */
  524.     public function getDataIns(): ?DateTime {
  525.         return $this->dataIns;
  526.     }
  527.     /**
  528.      * @param DateTime $dataIns
  529.      */
  530.     public function setDataIns(?DateTime $dataIns): void {
  531.         $this->dataIns $dataIns;
  532.     }
  533.     /**
  534.      * @return string
  535.      */
  536.     public function getNumCell(): ?string {
  537.         return $this->numCell;
  538.     }
  539.     /**
  540.      * @param string $numCell
  541.      */
  542.     public function setNumCell(?string $numCell): void {
  543.         $this->numCell $numCell;
  544.     }
  545.     /**
  546.      * @return string
  547.      */
  548.     public function getCciaa(): ?string {
  549.         return $this->cciaa;
  550.     }
  551.     /**
  552.      * @param string $cciaa
  553.      */
  554.     public function setCciaa(?string $cciaa): void {
  555.         $this->cciaa $cciaa;
  556.     }
  557.     /**
  558.      * @return string
  559.      */
  560.     public function getTipoAzienda(): ?string {
  561.         return $this->tipoAzienda;
  562.     }
  563.     /**
  564.      * @param string $tipoAzienda
  565.      */
  566.     public function setTipoAzienda(?string $tipoAzienda): void {
  567.         $this->tipoAzienda $tipoAzienda;
  568.     }
  569.     /**
  570.      * @return string
  571.      */
  572.     public function getCuuPa(): ?string {
  573.         return $this->cuuPa;
  574.     }
  575.     /**
  576.      * @param string $cuuPa
  577.      */
  578.     public function setCuuPa(?string $cuuPa): void {
  579.         $this->cuuPa $cuuPa;
  580.     }
  581.     /**
  582.      * @return string
  583.      */
  584.     public function getCognome(): ?string {
  585.         return $this->cognome;
  586.     }
  587.     /**
  588.      * @param string $cognome
  589.      */
  590.     public function setCognome(?string $cognome): void {
  591.         $this->cognome $cognome;
  592.     }
  593.     /**
  594.      * @return string
  595.      */
  596.     public function getDiacod(): ?string {
  597.         return $this->diacod;
  598.     }
  599.     /**
  600.      * @param string $diacod
  601.      */
  602.     public function setDiacod(?string $diacod): void {
  603.         $this->diacod $diacod;
  604.     }
  605.     /**
  606.      * @return float
  607.      */
  608.     public function getLat(): ?float {
  609.         return $this->lat;
  610.     }
  611.     /**
  612.      * @param float $lat
  613.      */
  614.     public function setLat(?float $lat): void {
  615.         $this->lat $lat;
  616.     }
  617.     /**
  618.      * @return float
  619.      */
  620.     public function getLng(): ?float {
  621.         return $this->lng;
  622.     }
  623.     /**
  624.      * @param float $lng
  625.      */
  626.     public function setLng(?float $lng): void {
  627.         $this->lng $lng;
  628.     }
  629.     /**
  630.      * @return string
  631.      */
  632.     public function getFlagInformativa(): ?string {
  633.         return $this->flagInformativa;
  634.     }
  635.     /**
  636.      * @param string $flagInformativa
  637.      */
  638.     public function setFlagInformativa(?string $flagInformativa): void {
  639.         $this->flagInformativa $flagInformativa;
  640.     }
  641.     /**
  642.      * @return string
  643.      */
  644.     public function getFlagConsenso(): ?string {
  645.         return $this->flagConsenso;
  646.     }
  647.     /**
  648.      * @param string $flagConsenso
  649.      */
  650.     public function setFlagConsenso(?string $flagConsenso): void {
  651.         $this->flagConsenso $flagConsenso;
  652.     }
  653.     /**
  654.      * @return string
  655.      */
  656.     public function getRegFisc(): ?string {
  657.         return $this->regFisc;
  658.     }
  659.     /**
  660.      * @param string $regFisc
  661.      */
  662.     public function setRegFisc(?string $regFisc): void {
  663.         $this->regFisc $regFisc;
  664.     }
  665.     /**
  666.      * @return string
  667.      */
  668.     public function getPrecode(): ?string {
  669.         return $this->precode;
  670.     }
  671.     /**
  672.      * @param string $precode
  673.      */
  674.     public function setPrecode(?string $precode): void {
  675.         $this->precode $precode;
  676.     }
  677.     /**
  678.      * @return bool
  679.      */
  680.     public function isInsDestinatario(): bool {
  681.         return $this->insDestinatario;
  682.     }
  683.     /**
  684.      * @param bool $insDestinatario
  685.      */
  686.     public function setInsDestinatario(bool $insDestinatario): void {
  687.         $this->insDestinatario $insDestinatario;
  688.     }
  689.     /**
  690.      * @return int
  691.      */
  692.     public function getCodSoggetto(): ?int {
  693.         return $this->codSoggetto;
  694.     }
  695.     /**
  696.      * @param int $codSoggetto
  697.      */
  698.     public function setCodSoggetto(?int $codSoggetto): void {
  699.         $this->codSoggetto $codSoggetto;
  700.     }
  701.     /**
  702.      * @return array
  703.      */
  704.     public function getVtbCliePersRif(): array {
  705.         return $this->vtbCliePersRif;
  706.     }
  707.     /**
  708.      * @param array $vtbCliePersRif
  709.      */
  710.     public function setVtbCliePersRif(array $vtbCliePersRif): void {
  711.         $this->vtbCliePersRif $vtbCliePersRif;
  712.     }
  713.     /**
  714.      * @return array
  715.      */
  716.     public function getVtbDest(): array {
  717.         return $this->vtbDest;
  718.     }
  719.     /**
  720.      * @param array $vtbDest
  721.      */
  722.     public function setVtbDest(array $vtbDest): void {
  723.         $this->vtbDest $vtbDest;
  724.     }
  725.     /**
  726.      * @return array
  727.      */
  728.     public function getVtbClieFido(): array {
  729.         return $this->vtbClieFido;
  730.     }
  731.     /**
  732.      * @param array $vtbClieFido
  733.      */
  734.     public function setVtbClieFido(array $vtbClieFido): void {
  735.         $this->vtbClieFido $vtbClieFido;
  736.     }
  737.     /**
  738.      * @return array
  739.      */
  740.     public function getCtbPlafondIva(): array {
  741.         return $this->ctbPlafondIva;
  742.     }
  743.     /**
  744.      * @param array $ctbPlafondIva
  745.      */
  746.     public function setCtbPlafondIva(array $ctbPlafondIva): void {
  747.         $this->ctbPlafondIva $ctbPlafondIva;
  748.     }
  749.     /**
  750.      * @return array
  751.      */
  752.     public function getTtbClieLine(): array {
  753.         return $this->ttbClieLine;
  754.     }
  755.     /**
  756.      * @param array $ttbClieLine
  757.      */
  758.     public function setTtbClieLine(array $ttbClieLine): void {
  759.         $this->ttbClieLine $ttbClieLine;
  760.     }
  761.     /**
  762.      * @return array
  763.      */
  764.     public function getGtbAnagNote(): array {
  765.         return $this->gtbAnagNote;
  766.     }
  767.     /**
  768.      * @param array $gtbAnagNote
  769.      */
  770.     public function setGtbAnagNote(array $gtbAnagNote): void {
  771.         $this->gtbAnagNote $gtbAnagNote;
  772.     }
  773.     /**
  774.      * @return array
  775.      */
  776.     public function getGtbAnagConai(): array {
  777.         return $this->gtbAnagConai;
  778.     }
  779.     /**
  780.      * @param array $gtbAnagConai
  781.      */
  782.     public function setGtbAnagConai(array $gtbAnagConai): void {
  783.         $this->gtbAnagConai $gtbAnagConai;
  784.     }
  785.     /**
  786.      * @return VtbClie
  787.      */
  788.     public function getVtbClie(): ?VtbClie {
  789.         return $this->vtbClie;
  790.     }
  791.     /**
  792.      * @param VtbClie $vtbClie
  793.      */
  794.     public function setVtbClie(?VtbClie $vtbClie): void {
  795.         $this->vtbClie $vtbClie;
  796.     }
  797.     /**
  798.      * @return mixed
  799.      */
  800.     public function getAtbForn() {
  801.         return $this->atbForn;
  802.     }
  803.     /**
  804.      * @param mixed $atbForn
  805.      */
  806.     public function setAtbForn($atbForn): void {
  807.         $this->atbForn $atbForn;
  808.     }
  809.     /**
  810.      * @return mixed
  811.      */
  812.     public function getOltbSoggetti() {
  813.         return $this->oltbSoggetti;
  814.     }
  815.     /**
  816.      * @param mixed $oltbSoggetti
  817.      */
  818.     public function setOltbSoggetti($oltbSoggetti): void {
  819.         $this->oltbSoggetti $oltbSoggetti;
  820.     }
  821.     public function fromDto($dto) {
  822.         $this->codAnag $this->getFromDto($dto"codAnag");
  823.         $this->ragSoc $this->getFromDto($dto"ragSoc");
  824.         $this->indirizzo $this->getFromDto($dto"indirizzo");
  825.         $this->cap $this->getFromDto($dto"cap");
  826.         $this->citta $this->getFromDto($dto"citta");
  827.         $this->prov $this->getFromDto($dto"prov");
  828.         $this->nazione $this->getFromDto($dto"nazione");
  829.         $this->telefono $this->getFromDto($dto"telefono");
  830.         $this->fax $this->getFromDto($dto"fax");
  831.         $this->partIva $this->getFromDto($dto"partIva");
  832.         $this->codFisc $this->getFromDto($dto"codFisc");
  833.         $this->note $this->getFromDto($dto"note");
  834.         $this->personaRif $this->getFromDto($dto"personaRif");
  835.         $this->allegato $this->getFromDto($dto"allegato");
  836.         $this->eMail $this->getFromDto($dto"eMail");
  837.         $this->eMailPec $this->getFromDto($dto"eMailPec");
  838.         $this->flagPersonaFg $this->getFromDto($dto"flagPersonaFg");
  839.         $this->sesso $this->getFromDto($dto"sesso");
  840.         $this->codCentroAzi $this->getFromDto($dto"codCentroAzi");
  841.         $this->codRuop $this->getFromDto($dto"codRuop");
  842.         $this->dataNascita $this->getFromDto($dto"dataNascita");
  843.         $this->luogoNascita $this->getFromDto($dto"luogoNascita");
  844.         $this->provNascita $this->getFromDto($dto"provNascita");
  845.         $this->nome $this->getFromDto($dto"nome");
  846.         $this->ragSoc2 $this->getFromDto($dto"ragSoc2");
  847.         $this->classeMerito $this->getFromDto($dto"classeMerito");
  848.         $this->dataIns $this->getFromDto($dto"dataIns");
  849.         $this->numCell $this->getFromDto($dto"numCell");
  850.         $this->cciaa $this->getFromDto($dto"cciaa");
  851.         $this->tipoAzienda $this->getFromDto($dto"tipoAzienda");
  852.         $this->cuuPa $this->getFromDto($dto"cuuPa");
  853.         $this->cognome $this->getFromDto($dto"cognome");
  854.         $this->diacod $this->getFromDto($dto"diacod");
  855.         $this->lat $this->getFromDto($dto"lat");
  856.         $this->lng $this->getFromDto($dto"lng");
  857.         $this->flagInformativa $this->getFromDto($dto"flagInformativa");
  858.         $this->flagConsenso $this->getFromDto($dto"flagConsenso");
  859.         $this->regFisc $this->getFromDto($dto"regFisc");
  860.         $this->precode $this->getFromDto($dto"precode");
  861.         $this->insDestinatario $this->getFromDto($dto"insDestinatario");
  862.         $this->codSoggetto $this->getFromDto($dto"codSoggetto");
  863.     }
  864.     public function getType() {
  865.         return "gtb_anag";
  866.     }
  867.     public function jsonSerialize() {
  868.         return [
  869.             "operation" => $this->getOperation(),
  870.             "type" => $this->getType(),
  871.             "codAnag" => $this->getForDto($this->codAnag),
  872.             "ragSoc" => $this->getForDto($this->ragSoc),
  873.             "indirizzo" => $this->getForDto($this->indirizzo),
  874.             "cap" => $this->getForDto($this->cap),
  875.             "citta" => $this->getForDto($this->citta),
  876.             "prov" => $this->getForDto($this->prov),
  877.             "nazione" => $this->getForDto($this->nazione),
  878.             "telefono" => $this->getForDto($this->telefono),
  879.             "fax" => $this->getForDto($this->fax),
  880.             "partIva" => $this->getForDto($this->partIva),
  881.             "codFisc" => $this->getForDto($this->codFisc),
  882.             "note" => $this->getForDto($this->note),
  883.             "personaRif" => $this->getForDto($this->personaRif),
  884.             "allegato" => $this->getForDto($this->allegato),
  885.             "eMail" => $this->getForDto($this->eMail),
  886.             "eMailPec" => $this->getForDto($this->eMailPec),
  887.             "flagPersonaFg" => $this->getForDto($this->flagPersonaFg),
  888.             "sesso" => $this->getForDto($this->sesso),
  889.             "codCentroAzi" => $this->getForDto($this->codCentroAzi),
  890.             "codRuop" => $this->getForDto($this->codRuop),
  891.             "dataNascita" => $this->getForDto($this->dataNascita),
  892.             "luogoNascita" => $this->getForDto($this->luogoNascita),
  893.             "provNascita" => $this->getForDto($this->provNascita),
  894.             "nome" => $this->getForDto($this->nome),
  895.             "ragSoc2" => $this->getForDto($this->ragSoc2),
  896.             "classeMerito" => $this->getForDto($this->classeMerito),
  897.             "dataIns" => $this->getForDto($this->dataIns),
  898.             "numCell" => $this->getForDto($this->numCell),
  899.             "cciaa" => $this->getForDto($this->cciaa),
  900.             "tipoAzienda" => $this->getForDto($this->tipoAzienda),
  901.             "cuuPa" => $this->getForDto($this->cuuPa),
  902.             "cognome" => $this->getForDto($this->cognome),
  903.             "diacod" => $this->getForDto($this->diacod),
  904.             "lat" => $this->getForDto($this->lat),
  905.             "lng" => $this->getForDto($this->lng),
  906.             "flagInformativa" => $this->getForDto($this->flagInformativa),
  907.             "flagConsenso" => $this->getForDto($this->flagConsenso),
  908.             "regFisc" => $this->getForDto($this->regFisc),
  909.             "precode" => $this->getForDto($this->precode),
  910.             "insDestinatario" => $this->getForDto($this->insDestinatario),
  911.             "codSoggetto" => $this->getForDto($this->codSoggetto),
  912.             "vtbClie" => $this->getForDto($this->vtbClie),
  913.             "atbForn" => $this->getForDto($this->atbForn),
  914.         ];
  915.     }
  916. }