| 1 | <?php |
||
| 15 | class ProdutoStatus |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var integer |
||
| 19 | */ |
||
| 20 | private $id; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | private $nome; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * ProdutoStatus constructor. |
||
| 29 | */ |
||
| 30 | public function __construct() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return int |
||
| 36 | */ |
||
| 37 | public function getId() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param int $id |
||
| 44 | * @return ProdutoStatus |
||
| 45 | */ |
||
| 46 | public function setId($id) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | public function getNome() |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @param string $nome |
||
| 62 | * @return ProdutoStatus |
||
| 63 | */ |
||
| 64 | public function setNome($nome) |
||
| 69 | |||
| 70 | } |