php-censor/src/Model/Base/BuildMeta.php
2018-03-11 10:56:36 +07:00

124 lines
2.2 KiB
PHP

<?php
namespace PHPCensor\Model\Base;
use PHPCensor\Model;
class BuildMeta extends Model
{
/**
* @var string
*/
protected $tableName = 'build_meta';
/**
* @var array
*/
protected $data = [
'id' => null,
'build_id' => null,
'meta_key' => null,
'meta_value' => null,
];
/**
* @return integer
*/
public function getId()
{
return (integer)$this->data['id'];
}
/**
* @param integer $value
*/
public function setId($value)
{
$this->validateNotNull('id', $value);
$this->validateInt('id', $value);
if ($this->data['id'] === $value) {
return;
}
$this->data['id'] = $value;
$this->setModified('id');
}
/**
* @return integer
*/
public function getBuildId()
{
return (integer)$this->data['build_id'];
}
/**
* @param integer $value
*/
public function setBuildId($value)
{
$this->validateNotNull('build_id', $value);
$this->validateInt('build_id', $value);
if ($this->data['build_id'] === $value) {
return;
}
$this->data['build_id'] = $value;
$this->setModified('build_id');
}
/**
* @return string
*/
public function getMetaKey()
{
return $this->data['meta_key'];
}
/**
* @param string $value
*/
public function setMetaKey($value)
{
$this->validateNotNull('meta_key', $value);
$this->validateString('meta_key', $value);
if ($this->data['meta_key'] === $value) {
return;
}
$this->data['meta_key'] = $value;
$this->setModified('meta_key');
}
/**
* @return string
*/
public function getMetaValue()
{
return $this->data['meta_value'];
}
/**
* @param string $value
*/
public function setMetaValue($value)
{
$this->validateNotNull('meta_value', $value);
$this->validateString('meta_value', $value);
if ($this->data['meta_value'] === $value) {
return;
}
$this->data['meta_value'] = $value;
$this->setModified('meta_value');
}
}