Viewing file: AtLogClients.php (15.84 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php namespace Modules\Models; class AtLogClients extends \Phalcon\Mvc\Model {
/** * * @var integer * @Primary * @Identity * @Column(type="integer", length=11, nullable=false) */ protected $logcid;
/** * * @var integer * @Column(type="integer", length=11, nullable=true) */ protected $cid;
/** * * @var string * @Column(type="string", length=200, nullable=true) */ protected $pcd;
/** * * @var string * @Column(type="string", length=45, nullable=true) */ protected $name;
/** * * @var string * @Column(type="string", length=45, nullable=true) */ protected $last_name;
/** * * @var string * @Column(type="string", length=45, nullable=true) */ protected $second_name;
/** * * @var string * @Column(type="string", length=75, nullable=true) */ protected $email;
/** * * @var string * @Column(type="string", length=15, nullable=true) */ protected $tel;
/** * * @var string * @Column(type="string", length=1, nullable=true) */ protected $sex;
/** * * @var string * @Column(type="string", nullable=true) */ protected $birthdate;
/** * * @var integer * @Column(type="integer", length=2, nullable=true) */ protected $age;
/** * * @var integer * @Column(type="integer", length=1, nullable=true) */ protected $hour_interest;
/** * * @var string * @Column(type="string", length=4, nullable=true) */ protected $average;
/** * * @var integer * @Column(type="integer", length=1, nullable=true) */ protected $working;
/** * * @var string * @Column(type="string", nullable=true) */ protected $status;
/** * * @var string * @Column(type="string", nullable=true) */ protected $date_creation;
/** * * @var string * @Column(type="string", length=45, nullable=true) */ protected $scid;
/** * * @var string * @Column(type="string", length=45, nullable=true) */ protected $crid;
/** * * @var integer * @Column(type="integer", length=11, nullable=true) */ protected $uid;
/** * * @var integer * @Column(type="integer", length=11, nullable=true) */ protected $uid_update;
/** * * @var string * @Column(type="string", length=200, nullable=true) */ protected $street;
/** * * @var string * @Column(type="string", length=100, nullable=true) */ protected $colony;
/** * * @var string * @Column(type="string", length=50, nullable=true) */ protected $town;
/** * * @var string * @Column(type="string", length=50, nullable=true) */ protected $state;
/** * * @var string * @Column(type="string", length=500, nullable=true) */ protected $references;
/** * * @var string * @Column(type="string", length=10, nullable=true) */ protected $cp;
/** * * @var string * @Column(type="string", length=15, nullable=true) */ protected $tel_house;
/** * * @var string * @Column(type="string", length=15, nullable=true) */ protected $tel_work;
/** * * @var string * @Column(type="string", length=35, nullable=true) */ protected $turn;
/** * * @var string * @Column(type="string", length=100, nullable=true) */ protected $semester;
/** * Method to set the value of field logcid * * @param integer $logcid * @return $this */ public function setLogcid($logcid) { $this->logcid = $logcid;
return $this; }
/** * Method to set the value of field cid * * @param integer $cid * @return $this */ public function setCid($cid) { $this->cid = $cid;
return $this; }
/** * Method to set the value of field pcd * * @param string $pcd * @return $this */ public function setPcd($pcd) { $this->pcd = $pcd;
return $this; }
/** * Method to set the value of field name * * @param string $name * @return $this */ public function setName($name) { $this->name = $name;
return $this; }
/** * Method to set the value of field last_name * * @param string $last_name * @return $this */ public function setLastName($last_name) { $this->last_name = $last_name;
return $this; }
/** * Method to set the value of field second_name * * @param string $second_name * @return $this */ public function setSecondName($second_name) { $this->second_name = $second_name;
return $this; }
/** * Method to set the value of field email * * @param string $email * @return $this */ public function setEmail($email) { $this->email = $email;
return $this; }
/** * Method to set the value of field tel * * @param string $tel * @return $this */ public function setTel($tel) { $this->tel = $tel;
return $this; }
/** * Method to set the value of field sex * * @param string $sex * @return $this */ public function setSex($sex) { $this->sex = $sex;
return $this; }
/** * Method to set the value of field birthdate * * @param string $birthdate * @return $this */ public function setBirthdate($birthdate) { $this->birthdate = $birthdate;
return $this; }
/** * Method to set the value of field age * * @param integer $age * @return $this */ public function setAge($age) { $this->age = $age;
return $this; }
/** * Method to set the value of field hour_interest * * @param integer $hour_interest * @return $this */ public function setHourInterest($hour_interest) { $this->hour_interest = $hour_interest;
return $this; }
/** * Method to set the value of field average * * @param string $average * @return $this */ public function setAverage($average) { $this->average = $average;
return $this; }
/** * Method to set the value of field working * * @param integer $working * @return $this */ public function setWorking($working) { $this->working = $working;
return $this; }
/** * Method to set the value of field status * * @param string $status * @return $this */ public function setStatus($status) { $this->status = $status;
return $this; }
/** * Method to set the value of field date_creation * * @param string $date_creation * @return $this */ public function setDateCreation($date_creation) { $this->date_creation = $date_creation;
return $this; }
/** * Method to set the value of field scid * * @param string $scid * @return $this */ public function setScid($scid) { $this->scid = $scid;
return $this; }
/** * Method to set the value of field crid * * @param string $crid * @return $this */ public function setCrid($crid) { $this->crid = $crid;
return $this; }
/** * Method to set the value of field uid * * @param integer $uid * @return $this */ public function setUid($uid) { $this->uid = $uid;
return $this; }
/** * Method to set the value of field uid_update * * @param integer $uid_update * @return $this */ public function setUidUpdate($uid_update) { $this->uid_update = $uid_update;
return $this; }
/** * Method to set the value of field street * * @param string $street * @return $this */ public function setStreet($street) { $this->street = $street;
return $this; }
/** * Method to set the value of field colony * * @param string $colony * @return $this */ public function setColony($colony) { $this->colony = $colony;
return $this; }
/** * Method to set the value of field town * * @param string $town * @return $this */ public function setTown($town) { $this->town = $town;
return $this; }
/** * Method to set the value of field state * * @param string $state * @return $this */ public function setState($state) { $this->state = $state;
return $this; }
/** * Method to set the value of field references * * @param string $references * @return $this */ public function setReferences($references) { $this->references = $references;
return $this; }
/** * Method to set the value of field cp * * @param string $cp * @return $this */ public function setCp($cp) { $this->cp = $cp;
return $this; }
/** * Method to set the value of field tel_house * * @param string $tel_house * @return $this */ public function setTelHouse($tel_house) { $this->tel_house = $tel_house;
return $this; }
/** * Method to set the value of field tel_work * * @param string $tel_work * @return $this */ public function setTelWork($tel_work) { $this->tel_work = $tel_work;
return $this; }
/** * Method to set the value of field turn * * @param string $turn * @return $this */ public function setTurn($turn) { $this->turn = $turn;
return $this; }
/** * Method to set the value of field semester * * @param string $semester * @return $this */ public function setSemester($semester) { $this->semester = $semester;
return $this; }
/** * Returns the value of field logcid * * @return integer */ public function getLogcid() { return $this->logcid; }
/** * Returns the value of field cid * * @return integer */ public function getCid() { return $this->cid; }
/** * Returns the value of field pcd * * @return string */ public function getPcd() { return $this->pcd; }
/** * Returns the value of field name * * @return string */ public function getName() { return $this->name; }
/** * Returns the value of field last_name * * @return string */ public function getLastName() { return $this->last_name; }
/** * Returns the value of field second_name * * @return string */ public function getSecondName() { return $this->second_name; }
/** * Returns the value of field email * * @return string */ public function getEmail() { return $this->email; }
/** * Returns the value of field tel * * @return string */ public function getTel() { return $this->tel; }
/** * Returns the value of field sex * * @return string */ public function getSex() { return $this->sex; }
/** * Returns the value of field birthdate * * @return string */ public function getBirthdate() { return $this->birthdate; }
/** * Returns the value of field age * * @return integer */ public function getAge() { return $this->age; }
/** * Returns the value of field hour_interest * * @return integer */ public function getHourInterest() { return $this->hour_interest; }
/** * Returns the value of field average * * @return string */ public function getAverage() { return $this->average; }
/** * Returns the value of field working * * @return integer */ public function getWorking() { return $this->working; }
/** * Returns the value of field status * * @return string */ public function getStatus() { return $this->status; }
/** * Returns the value of field date_creation * * @return string */ public function getDateCreation() { return $this->date_creation; }
/** * Returns the value of field scid * * @return string */ public function getScid() { return $this->scid; }
/** * Returns the value of field crid * * @return string */ public function getCrid() { return $this->crid; }
/** * Returns the value of field uid * * @return integer */ public function getUid() { return $this->uid; }
/** * Returns the value of field uid_update * * @return integer */ public function getUidUpdate() { return $this->uid_update; }
/** * Returns the value of field street * * @return string */ public function getStreet() { return $this->street; }
/** * Returns the value of field colony * * @return string */ public function getColony() { return $this->colony; }
/** * Returns the value of field town * * @return string */ public function getTown() { return $this->town; }
/** * Returns the value of field state * * @return string */ public function getState() { return $this->state; }
/** * Returns the value of field references * * @return string */ public function getReferences() { return $this->references; }
/** * Returns the value of field cp * * @return string */ public function getCp() { return $this->cp; }
/** * Returns the value of field tel_house * * @return string */ public function getTelHouse() { return $this->tel_house; }
/** * Returns the value of field tel_work * * @return string */ public function getTelWork() { return $this->tel_work; }
/** * Returns the value of field turn * * @return string */ public function getTurn() { return $this->turn; }
/** * Returns the value of field semester * * @return string */ public function getSemester() { return $this->semester; }
/** * Returns table name mapped in the model. * * @return string */ public function getSource() { return 'at_log_clients'; }
/** * Allows to query a set of records that match the specified conditions * * @param mixed $parameters * @return AtLogClients[] */ public static function find($parameters = null) { return parent::find($parameters); }
/** * Allows to query the first record that match the specified conditions * * @param mixed $parameters * @return AtLogClients */ public static function findFirst($parameters = null) { return parent::findFirst($parameters); }
}
|