src/Entity/Clientesenvio.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Clientesenvio
  6.  *
  7.  * @ORM\Table(name="clientesenvio", indexes={@ORM\Index(name="CODCLIENTE", columns={"CODCLIENTE"})}, options={"readOnly": true})
  8.  * @ORM\Entity
  9.  */
  10. class Clientesenvio
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\id
  16.      * @ORM\Column(name="CODCLIENTE", type="integer", nullable=false)
  17.      */
  18.     private $codcliente;
  19.     /**
  20.      * @var int
  21.      *
  22.      * @ORM\Column(name="CODENVIO", type="integer", nullable=false)
  23.      */
  24.     private $codenvio;
  25.     /**
  26.      * @var string|null
  27.      *
  28.      * @ORM\Column(name="NOMBRECOMERCIAL", type="string", length=255, nullable=true, options={"default"="NULL"})
  29.      */
  30.     private $nombrecomercial 'NULL';
  31.     /**
  32.      * @var string|null
  33.      *
  34.      * @ORM\Column(name="DIRECCION1", type="string", length=255, nullable=true, options={"default"="NULL"})
  35.      */
  36.     private $direccion1 'NULL';
  37.     /**
  38.      * @var string|null
  39.      *
  40.      * @ORM\Column(name="DIRECCION2", type="string", length=255, nullable=true, options={"default"="NULL"})
  41.      */
  42.     private $direccion2 'NULL';
  43.     /**
  44.      * @var string|null
  45.      *
  46.      * @ORM\Column(name="CODPOSTAL", type="string", length=8, nullable=true, options={"default"="NULL"})
  47.      */
  48.     private $codpostal 'NULL';
  49.     /**
  50.      * @var string|null
  51.      *
  52.      * @ORM\Column(name="POBLACION", type="string", length=100, nullable=true, options={"default"="NULL"})
  53.      */
  54.     private $poblacion 'NULL';
  55.     /**
  56.      * @var string|null
  57.      *
  58.      * @ORM\Column(name="PROVINCIA", type="string", length=100, nullable=true, options={"default"="NULL"})
  59.      */
  60.     private $provincia 'NULL';
  61.     /**
  62.      * @var string|null
  63.      *
  64.      * @ORM\Column(name="PAIS", type="string", length=100, nullable=true, options={"default"="NULL"})
  65.      */
  66.     private $pais 'NULL';
  67.     /**
  68.      * @var string|null
  69.      *
  70.      * @ORM\Column(name="TELEFONO", type="string", length=15, nullable=true, options={"default"="NULL"})
  71.      */
  72.     private $telefono 'NULL';
  73.     /**
  74.      * @var string|null
  75.      *
  76.      * @ORM\Column(name="FAX", type="string", length=15, nullable=true, options={"default"="NULL"})
  77.      */
  78.     private $fax 'NULL';
  79.     /**
  80.      * @var string|null
  81.      *
  82.      * @ORM\Column(name="EMAIL", type="string", length=255, nullable=true, options={"default"="NULL"})
  83.      */
  84.     private $email 'NULL';
  85.     /**
  86.      * @var string|null
  87.      *
  88.      * @ORM\Column(name="PERSONACONTACTO", type="string", length=255, nullable=true, options={"default"="NULL"})
  89.      */
  90.     private $personacontacto 'NULL';
  91.     /**
  92.      * @var int|null
  93.      *
  94.      * @ORM\Column(name="CODTRANSPORTE", type="integer", nullable=true, options={"default"="NULL"})
  95.      */
  96.     private $codtransporte NULL;
  97.     /**
  98.      * @var string|null
  99.      *
  100.      * @ORM\Column(name="TIPOPORTES", type="string", length=1, nullable=true, options={"default"="NULL"})
  101.      */
  102.     private $tipoportes 'NULL';
  103.     /**
  104.      * @var float|null
  105.      *
  106.      * @ORM\Column(name="CANTPORTESPAG", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  107.      */
  108.     private $cantportespag NULL;
  109.     /**
  110.      * @var string|null
  111.      *
  112.      * @ORM\Column(name="POPERACIONAL", type="string", length=15, nullable=true, options={"default"="NULL"})
  113.      */
  114.     private $poperacional 'NULL';
  115.     /**
  116.      * @var string|null
  117.      *
  118.      * @ORM\Column(name="DEFECTO", type="string", length=1, nullable=true, options={"default"="NULL"})
  119.      */
  120.     private $defecto 'NULL';
  121.     /**
  122.      * @var float|null
  123.      *
  124.      * @ORM\Column(name="KMS", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  125.      */
  126.     private $kms NULL;
  127.     /**
  128.      * @var string|null
  129.      *
  130.      * @ORM\Column(name="CODPAIS", type="string", length=2, nullable=true, options={"default"="NULL"})
  131.      */
  132.     private $codpais 'NULL';
  133.     /**
  134.      * @var string|null
  135.      *
  136.      * @ORM\Column(name="OBSERVACIONES", type="string", length=255, nullable=true, options={"default"="NULL"})
  137.      */
  138.     private $observaciones 'NULL';
  139.     public function getCodcliente(): ?int
  140.     {
  141.         return $this->codcliente;
  142.     }
  143.     public function setCodcliente(int $codcliente): self
  144.     {
  145.         $this->codcliente $codcliente;
  146.         return $this;
  147.     }
  148.     public function getCodenvio(): ?int
  149.     {
  150.         return $this->codenvio;
  151.     }
  152.     public function setCodenvio(int $codenvio): self
  153.     {
  154.         $this->codenvio $codenvio;
  155.         return $this;
  156.     }
  157.     public function getNombrecomercial(): ?string
  158.     {
  159.         return $this->nombrecomercial;
  160.     }
  161.     public function setNombrecomercial(?string $nombrecomercial): self
  162.     {
  163.         $this->nombrecomercial $nombrecomercial;
  164.         return $this;
  165.     }
  166.     public function getDireccion1(): ?string
  167.     {
  168.         return $this->direccion1;
  169.     }
  170.     public function setDireccion1(?string $direccion1): self
  171.     {
  172.         $this->direccion1 $direccion1;
  173.         return $this;
  174.     }
  175.     public function getDireccion2(): ?string
  176.     {
  177.         return $this->direccion2;
  178.     }
  179.     public function setDireccion2(?string $direccion2): self
  180.     {
  181.         $this->direccion2 $direccion2;
  182.         return $this;
  183.     }
  184.     public function getCodpostal(): ?string
  185.     {
  186.         return $this->codpostal;
  187.     }
  188.     public function setCodpostal(?string $codpostal): self
  189.     {
  190.         $this->codpostal $codpostal;
  191.         return $this;
  192.     }
  193.     public function getPoblacion(): ?string
  194.     {
  195.         return $this->poblacion;
  196.     }
  197.     public function setPoblacion(?string $poblacion): self
  198.     {
  199.         $this->poblacion $poblacion;
  200.         return $this;
  201.     }
  202.     public function getProvincia(): ?string
  203.     {
  204.         return $this->provincia;
  205.     }
  206.     public function setProvincia(?string $provincia): self
  207.     {
  208.         $this->provincia $provincia;
  209.         return $this;
  210.     }
  211.     public function getPais(): ?string
  212.     {
  213.         return $this->pais;
  214.     }
  215.     public function setPais(?string $pais): self
  216.     {
  217.         $this->pais $pais;
  218.         return $this;
  219.     }
  220.     public function getTelefono(): ?string
  221.     {
  222.         return $this->telefono;
  223.     }
  224.     public function setTelefono(?string $telefono): self
  225.     {
  226.         $this->telefono $telefono;
  227.         return $this;
  228.     }
  229.     public function getFax(): ?string
  230.     {
  231.         return $this->fax;
  232.     }
  233.     public function setFax(?string $fax): self
  234.     {
  235.         $this->fax $fax;
  236.         return $this;
  237.     }
  238.     public function getEmail(): ?string
  239.     {
  240.         return $this->email;
  241.     }
  242.     public function setEmail(?string $email): self
  243.     {
  244.         $this->email $email;
  245.         return $this;
  246.     }
  247.     public function getPersonacontacto(): ?string
  248.     {
  249.         return $this->personacontacto;
  250.     }
  251.     public function setPersonacontacto(?string $personacontacto): self
  252.     {
  253.         $this->personacontacto $personacontacto;
  254.         return $this;
  255.     }
  256.     public function getCodtransporte(): ?int
  257.     {
  258.         return $this->codtransporte;
  259.     }
  260.     public function setCodtransporte(?int $codtransporte): self
  261.     {
  262.         $this->codtransporte $codtransporte;
  263.         return $this;
  264.     }
  265.     public function getTipoportes(): ?string
  266.     {
  267.         return $this->tipoportes;
  268.     }
  269.     public function setTipoportes(?string $tipoportes): self
  270.     {
  271.         $this->tipoportes $tipoportes;
  272.         return $this;
  273.     }
  274.     public function getCantportespag(): ?float
  275.     {
  276.         return $this->cantportespag;
  277.     }
  278.     public function setCantportespag(?float $cantportespag): self
  279.     {
  280.         $this->cantportespag $cantportespag;
  281.         return $this;
  282.     }
  283.     public function getPoperacional(): ?string
  284.     {
  285.         return $this->poperacional;
  286.     }
  287.     public function setPoperacional(?string $poperacional): self
  288.     {
  289.         $this->poperacional $poperacional;
  290.         return $this;
  291.     }
  292.     public function getDefecto(): ?string
  293.     {
  294.         return $this->defecto;
  295.     }
  296.     public function setDefecto(?string $defecto): self
  297.     {
  298.         $this->defecto $defecto;
  299.         return $this;
  300.     }
  301.     public function getKms(): ?float
  302.     {
  303.         return $this->kms;
  304.     }
  305.     public function setKms(?float $kms): self
  306.     {
  307.         $this->kms $kms;
  308.         return $this;
  309.     }
  310.     public function getCodpais(): ?string
  311.     {
  312.         return $this->codpais;
  313.     }
  314.     public function setCodpais(?string $codpais): self
  315.     {
  316.         $this->codpais $codpais;
  317.         return $this;
  318.     }
  319.     public function getObservaciones(): ?string
  320.     {
  321.         return $this->observaciones;
  322.     }
  323.     public function setObservaciones(?string $observaciones): self
  324.     {
  325.         $this->observaciones $observaciones;
  326.         return $this;
  327.     }
  328. }