src/Entity/Clientescamposlibres.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Clientescamposlibres
  6.  *
  7.  * @ORM\Table(name="clientescamposlibres", options={"readOnly": true})
  8.  * @ORM\Entity
  9.  */
  10. class Clientescamposlibres
  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 string|null
  21.      *
  22.      * @ORM\Column(name="DIRECCION_2", type="string", length=50, nullable=true, options={"default"="NULL"})
  23.      */
  24.     private $direccion_2 'NULL';
  25.     /**
  26.      * @var string|null
  27.      *
  28.      * @ORM\Column(name="NOMBRE_1", type="string", length=50, nullable=true, options={"default"="NULL"})
  29.      */
  30.     private $nombre_1 'NULL';
  31.     /**
  32.      * @var string|null
  33.      *
  34.      * @ORM\Column(name="OTROS_NOMBRES", type="string", length=50, nullable=true, options={"default"="NULL"})
  35.      */
  36.     private $otros_nombres 'NULL';
  37.     /**
  38.      * @var string|null
  39.      *
  40.      * @ORM\Column(name="APELLIDO_1", type="string", length=50, nullable=true, options={"default"="NULL"})
  41.      */
  42.     private $apellido_1 'NULL';
  43.     /**
  44.      * @var string|null
  45.      *
  46.      * @ORM\Column(name="APELLIDO_2", type="string", length=50, nullable=true, options={"default"="NULL"})
  47.      */
  48.     private $apellido_2 'NULL';
  49.     /**
  50.      * @var string|null
  51.      *
  52.      * @ORM\Column(name="FE_MUNICIPIO", type="string", length=10, nullable=true, options={"default"="NULL"})
  53.      */
  54.     private $fe_municipio 'NULL';
  55.     /**
  56.      * @var string|null
  57.      *
  58.      * @ORM\Column(name="FE_RESPONSABILIDADES", type="string", length=255, nullable=true, options={"default"="NULL"})
  59.      */
  60.     private $fe_responsabilidades 'NULL';
  61.     /**
  62.      * @var string|null
  63.      *
  64.      * @ORM\Column(name="TIPO_DE_DOCUMENTO", type="string", length=100, nullable=true, options={"default"="NULL"})
  65.      */
  66.     private $tipo_de_documento 'NULL';
  67.     /**
  68.      * @var string|null
  69.      *
  70.      * @ORM\Column(name="TIPOPERSONA", type="string", length=50, nullable=true, options={"default"="NULL"})
  71.      */
  72.     private $tipopersona 'NULL';
  73.     /**
  74.      * @var string|null
  75.      *
  76.      * @ORM\Column(name="FE_REGIMEN", type="string", length=50, nullable=true, options={"default"="NULL"})
  77.      */
  78.     private $fe_regimen 'NULL';
  79.     /**
  80.      * @var string|null
  81.      *
  82.      * @ORM\Column(name="FE_DET_TRIBUTARIO", type="string", length=100, nullable=true, options={"default"="NULL"})
  83.      */
  84.     private $fe_det_tributario 'NULL';
  85.     /**
  86.      * @var string|null
  87.      *
  88.      * @ORM\Column(name="CUENTA_ALIMENTACION", type="string", length=50, nullable=true, options={"default"="NULL"})
  89.      */
  90.     private $cuenta_alimentacion 'NULL';
  91.     /**
  92.      * @var string|null
  93.      *
  94.      * @ORM\Column(name="CENTRO_COSTOS", type="string", length=50, nullable=true, options={"default"="NULL"})
  95.      */
  96.     private $centro_costos 'NULL';
  97.     /**
  98.      * @var string|null
  99.      *
  100.      * @ORM\Column(name="CENTRO_OPERACION", type="string", length=50, nullable=true, options={"default"="NULL"})
  101.      */
  102.     private $centro_operacion 'NULL';
  103.     public function getCodcliente(): ?int
  104.     {
  105.         return $this->codcliente;
  106.     }
  107.     public function getDireccion2(): ?string
  108.     {
  109.         return $this->direccion_2;
  110.     }
  111.     public function setDireccion2(?string $direccion_2): static
  112.     {
  113.         $this->direccion_2 $direccion_2;
  114.         return $this;
  115.     }
  116.     public function getNombre1(): ?string
  117.     {
  118.         return $this->nombre_1;
  119.     }
  120.     public function setNombre1(?string $nombre_1): static
  121.     {
  122.         $this->nombre_1 $nombre_1;
  123.         return $this;
  124.     }
  125.     public function getOtrosNombres(): ?string
  126.     {
  127.         return $this->otros_nombres;
  128.     }
  129.     public function setOtrosNombres(?string $otros_nombres): static
  130.     {
  131.         $this->otros_nombres $otros_nombres;
  132.         return $this;
  133.     }
  134.     public function getApellido1(): ?string
  135.     {
  136.         return $this->apellido_1;
  137.     }
  138.     public function setApellido1(?string $apellido_1): static
  139.     {
  140.         $this->apellido_1 $apellido_1;
  141.         return $this;
  142.     }
  143.     public function getApellido2(): ?string
  144.     {
  145.         return $this->apellido_2;
  146.     }
  147.     public function setApellido2(?string $apellido_2): static
  148.     {
  149.         $this->apellido_2 $apellido_2;
  150.         return $this;
  151.     }
  152.     public function getFeMunicipio(): ?string
  153.     {
  154.         return $this->fe_municipio;
  155.     }
  156.     public function setFeMunicipio(?string $fe_municipio): static
  157.     {
  158.         $this->fe_municipio $fe_municipio;
  159.         return $this;
  160.     }
  161.     public function getFeResponsabilidades(): ?string
  162.     {
  163.         return $this->fe_responsabilidades;
  164.     }
  165.     public function setFeResponsabilidades(?string $fe_responsabilidades): static
  166.     {
  167.         $this->fe_responsabilidades $fe_responsabilidades;
  168.         return $this;
  169.     }
  170.     public function getTipoDeDocumento(): ?string
  171.     {
  172.         return $this->tipo_de_documento;
  173.     }
  174.     public function setTipoDeDocumento(?string $tipo_de_documento): static
  175.     {
  176.         $this->tipo_de_documento $tipo_de_documento;
  177.         return $this;
  178.     }
  179.     public function getTipopersona(): ?string
  180.     {
  181.         return $this->tipopersona;
  182.     }
  183.     public function setTipopersona(?string $tipopersona): static
  184.     {
  185.         $this->tipopersona $tipopersona;
  186.         return $this;
  187.     }
  188.     public function getFeRegimen(): ?string
  189.     {
  190.         return $this->fe_regimen;
  191.     }
  192.     public function setFeRegimen(?string $fe_regimen): static
  193.     {
  194.         $this->fe_regimen $fe_regimen;
  195.         return $this;
  196.     }
  197.     public function getFeDetTributario(): ?string
  198.     {
  199.         return $this->fe_det_tributario;
  200.     }
  201.     public function setFeDetTributario(?string $fe_det_tributario): static
  202.     {
  203.         $this->fe_det_tributario $fe_det_tributario;
  204.         return $this;
  205.     }
  206.     public function getCuentaAlimentacion(): ?string
  207.     {
  208.         return $this->cuenta_alimentacion;
  209.     }
  210.     public function setCuentaAlimentacion(?string $cuenta_alimentacion): static
  211.     {
  212.         $this->cuenta_alimentacion $cuenta_alimentacion;
  213.         return $this;
  214.     }
  215.     public function getCentroCostos(): ?string
  216.     {
  217.         return $this->centro_costos;
  218.     }
  219.     public function setCentroCostos(?string $centro_costos): static
  220.     {
  221.         $this->centro_costos $centro_costos;
  222.         return $this;
  223.     }
  224.     public function getCentroOperacion(): ?string
  225.     {
  226.         return $this->centro_operacion;
  227.     }
  228.     public function setCentroOperacion(?string $centro_operacion): static
  229.     {
  230.         $this->centro_operacion $centro_operacion;
  231.         return $this;
  232.     }
  233. }
  234. // <?php
  235. // namespace App\Entity;
  236. // use Doctrine\ORM\Mapping as ORM;
  237. // #[ORM\Entity]
  238. // #[ORM\Table(name: "clientescamposlibres", options: ["readOnly" => true])]
  239. // class Clientescamposlibres
  240. // {
  241. //     #[ORM\Id]
  242. //     #[ORM\Column(name: "CODCLIENTE", type: "integer", nullable: false)]
  243. //     private $codcliente;
  244. //     #[ORM\Column(name: "DIRECCION_2", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  245. //     private $direccion_2 = 'NULL';
  246. //     #[ORM\Column(name: "NOMBRE_1", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  247. //     private $nombre_1 = 'NULL';
  248. //     #[ORM\Column(name: "OTROS_NOMBRES", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  249. //     private $otros_nombres = 'NULL';
  250. //     #[ORM\Column(name: "APELLIDO_1", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  251. //     private $apellido_1 = 'NULL';
  252. //     #[ORM\Column(name: "APELLIDO_2", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  253. //     private $apellido_2 = 'NULL';
  254. //     #[ORM\Column(name: "FE_MUNICIPIO", type: "string", length: 10, nullable: true, options: ["default" => "NULL"])]
  255. //     private $fe_municipio = 'NULL';
  256. //     #[ORM\Column(name: "FE_RESPONSABILIDADES", type: "string", length: 255, nullable: true, options: ["default" => "NULL"])]
  257. //     private $fe_responsabilidades = 'NULL';
  258. //     #[ORM\Column(name: "TIPO_DE_DOCUMENTO", type: "string", length: 100, nullable: true, options: ["default" => "NULL"])]
  259. //     private $tipo_de_documento = 'NULL';
  260. //     #[ORM\Column(name: "TIPOPERSONA", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  261. //     private $tipopersona = 'NULL';
  262. //     #[ORM\Column(name: "FE_REGIMEN", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  263. //     private $fe_regimen = 'NULL';
  264. //     #[ORM\Column(name: "FE_DET_TRIBUTARIO", type: "string", length: 100, nullable: true, options: ["default" => "NULL"])]
  265. //     private $fe_det_tributario = 'NULL';
  266. //     #[ORM\Column(name: "CUENTA_ALIMENTACION", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  267. //     private $cuenta_alimentacion = 'NULL';
  268. //     #[ORM\Column(name: "CENTRO_COSTOS", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  269. //     private $centro_costos = 'NULL';
  270. //     #[ORM\Column(name: "CENTRO_OPERACION", type: "string", length: 50, nullable: true, options: ["default" => "NULL"])]
  271. //     private $centro_operacion = 'NULL';
  272. // }