-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Criação da model ContribuicaoLog [Issue #728]
- Loading branch information
1 parent
45e1984
commit 6fe5cf1
Showing
1 changed file
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
<?php | ||
class ContribuicaoLog{ | ||
private $id; | ||
private $valor; | ||
private $codigo; | ||
private $data_geracao; | ||
private $data_vencimento; | ||
private $id_socio; | ||
private $statusPagamento; | ||
|
||
/** | ||
* Get the value of id | ||
*/ | ||
public function getId() | ||
{ | ||
return $this->id; | ||
} | ||
|
||
/** | ||
* Set the value of id | ||
* | ||
* @return self | ||
*/ | ||
public function setId($id) | ||
{ | ||
$this->id = $id; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of valor | ||
*/ | ||
public function getValor() | ||
{ | ||
return $this->valor; | ||
} | ||
|
||
/** | ||
* Set the value of valor | ||
* | ||
* @return self | ||
*/ | ||
public function setValor($valor) | ||
{ | ||
$this->valor = $valor; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of codigo | ||
*/ | ||
public function getCodigo() | ||
{ | ||
return $this->codigo; | ||
} | ||
|
||
/** | ||
* Set the value of codigo | ||
* | ||
* @return self | ||
*/ | ||
public function setCodigo($codigo) | ||
{ | ||
$this->codigo = $codigo; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of data_geracao | ||
*/ | ||
public function getData_geracao() | ||
{ | ||
return $this->data_geracao; | ||
} | ||
|
||
/** | ||
* Set the value of data_geracao | ||
* | ||
* @return self | ||
*/ | ||
public function setData_geracao($data_geracao) | ||
{ | ||
$this->data_geracao = $data_geracao; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of data_vencimento | ||
*/ | ||
public function getData_vencimento() | ||
{ | ||
return $this->data_vencimento; | ||
} | ||
|
||
/** | ||
* Set the value of data_vencimento | ||
* | ||
* @return self | ||
*/ | ||
public function setData_vencimento($data_vencimento) | ||
{ | ||
$this->data_vencimento = $data_vencimento; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of id_socio | ||
*/ | ||
public function getId_socio() | ||
{ | ||
return $this->id_socio; | ||
} | ||
|
||
/** | ||
* Set the value of id_socio | ||
* | ||
* @return self | ||
*/ | ||
public function setId_socio($id_socio) | ||
{ | ||
$this->id_socio = $id_socio; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of statusPagamento | ||
*/ | ||
public function getStatusPagamento() | ||
{ | ||
return $this->statusPagamento; | ||
} | ||
|
||
/** | ||
* Set the value of statusPagamento | ||
* | ||
* @return self | ||
*/ | ||
public function setStatusPagamento($statusPagamento) | ||
{ | ||
$this->statusPagamento = $statusPagamento; | ||
|
||
return $this; | ||
} | ||
} |