<?php
class userVO
{
/**
* Enter description here...
*
* @var int(10) unsigned
*/
private $id;
/**
* Enter description here...
*
* @var varchar(120)
*/
private $username;
/**
* Enter description here...
*
* @var varchar(40)
*/
private $password;
/**
* Enter description here...
*
* @var int(2)
*/
private $rank;
/**
* Enter description here...
*
* @var tinyint(4)
*/
private $active;
/**
* Enter description here...
*
* @param int(10) unsigned $id
*/
public function setId($id)
{
$this -> id = $id;
}
/**
* Enter description here...
*
* @param varchar(120) $username
*/
public function setUsername($username)
{
$this -> username = $username;
}
/**
* Enter description here...
*
* @param varchar(40) $password
*/
public function setPassword($password)
{
$this -> password = $password;
}
/**
* Enter description here...
*
* @param int(2) $rank
*/
public function setRank($rank)
{
$this -> rank = $rank;
}
/**
* Enter description here...
*
* @param tinyint(4) $active
*/
public function setActive($active)
{
$this -> active = $active;
}
/**
* Enter description here...
*
* @return int(10) unsigned
*/
public function getId()
{
return $this -> id;
}
/**
* Enter description here...
*
* @return varchar(120)
*/
public function getUsername()
{
return $this -> username;
}
/**
* Enter description here...
*
* @return varchar(40)
*/
public function getPassword()
{
return $this -> password;
}
/**
* Enter description here...
*
* @return int(2)
*/
public function getRank()
{
return $this -> rank;
}
/**
* Enter description here...
*
* @return tinyint(4)
*/
public function getActive()
{
return $this -> active;
}
}
?>