File: /home/undanet/www/PortalEmpleo/src/Entity/WpUsermeta.php
<?php
namespace PortalEmpleo\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* WpUsermeta
*
* @ORM\Table(name="wp_usermeta", indexes={@ORM\Index(name="meta_key", columns={"meta_key"}), @ORM\Index(name="meta_value", columns={"meta_value"})})
* @ORM\Entity
*/
class WpUsermeta
{
/**
* @var int
*
* @ORM\Column(name="umeta_id", type="bigint", nullable=false, options={"unsigned"=true})
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $umetaId;
/**
* @var int
*
* @ORM\Column(name="user_id", type="bigint", nullable=false, options={"unsigned"=true})
*/
private $userId;
/**
* @var string
*
* @ORM\Column(name="meta_key", type="string", length=255, nullable=false)
*/
private $metaKey = '';
/**
* @var string
*
* @ORM\Column(name="meta_value", type="string", length=1000, nullable=false)
*/
private $metaValue = '';
public function __construct()
{
}
/**
* Get the value of umetaId
*
* @return int
*/
public function getUmetaId()
{
return $this->umetaId;
}
/**
* Set the value of umetaId
*
* @param int $umetaId
*
* @return self
*/
public function setUmetaId(int $umetaId)
{
$this->umetaId = $umetaId;
return $this;
}
/**
* Get the value of userId
*
* @return int
*/
public function getUserId()
{
return $this->userId;
}
/**
* Set the value of userId
*
* @param int $userId
*
* @return self
*/
public function setUserId(int $userId)
{
$this->userId = $userId;
return $this;
}
/**
* Get the value of metaKey
*
* @return string
*/
public function getMetaKey()
{
return $this->metaKey;
}
/**
* Set the value of metaKey
*
* @param string $metaKey
*
* @return self
*/
public function setMetaKey(string $metaKey)
{
$this->metaKey = $metaKey;
return $this;
}
/**
* Get the value of metaValue
*
* @return string
*/
public function getMetaValue()
{
return $this->metaValue;
}
/**
* Set the value of metaValue
*
* @param string $metaValue
*
* @return self
*/
public function setMetaValue(string $metaValue)
{
$this->metaValue = $metaValue;
return $this;
}
}