-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathctm_demonstrativoAnaliseConta.php
81 lines (70 loc) · 1.8 KB
/
ctm_demonstrativoAnaliseConta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
if (!class_exists("ctm_demonstrativoAnaliseConta", false))
{
class ctm_demonstrativoAnaliseConta
{
/**
*
* @var ct_demonstrativoCabecalho $cabecalhoDemonstrativo
* @access public
*/
public $cabecalhoDemonstrativo = null;
/**
*
* @var dadosPrestador $dadosPrestador
* @access public
*/
public $dadosPrestador = null;
/**
*
* @var Ctm_demonstrativoAnaliseContaDadosProtocolo[] $dadosConta
* @access public
*/
public $dadosConta = null;
/**
*
* @var float $valorInformadoGeral
* @access public
*/
public $valorInformadoGeral = null;
/**
*
* @var float $valorProcessadoGeral
* @access public
*/
public $valorProcessadoGeral = null;
/**
*
* @var float $valorLiberadoGeral
* @access public
*/
public $valorLiberadoGeral = null;
/**
*
* @var float $valorGlosaGeral
* @access public
*/
public $valorGlosaGeral = null;
/**
*
* @param ct_demonstrativoCabecalho $cabecalhoDemonstrativo
* @param dadosPrestador $dadosPrestador
* @param Ctm_demonstrativoAnaliseContaDadosProtocolo[] $dadosConta
* @param float $valorInformadoGeral
* @param float $valorProcessadoGeral
* @param float $valorLiberadoGeral
* @param float $valorGlosaGeral
* @access public
*/
public function __construct($cabecalhoDemonstrativo, $dadosPrestador, $dadosConta, $valorInformadoGeral, $valorProcessadoGeral, $valorLiberadoGeral, $valorGlosaGeral)
{
$this->cabecalhoDemonstrativo = $cabecalhoDemonstrativo;
$this->dadosPrestador = $dadosPrestador;
$this->dadosConta = $dadosConta;
$this->valorInformadoGeral = $valorInformadoGeral;
$this->valorProcessadoGeral = $valorProcessadoGeral;
$this->valorLiberadoGeral = $valorLiberadoGeral;
$this->valorGlosaGeral = $valorGlosaGeral;
}
}
}