1 | <?php |
||
22 | class JournauxRapproch { |
||
23 | |||
24 | /** |
||
25 | * Code journal. |
||
26 | * |
||
27 | * @var string|null |
||
28 | */ |
||
29 | private $codeJournal; |
||
30 | |||
31 | /** |
||
32 | * Methode. |
||
33 | * |
||
34 | * @var string|null |
||
35 | */ |
||
36 | private $methode; |
||
37 | |||
38 | /** |
||
39 | * Ne pas saisir solde fin. |
||
40 | * |
||
41 | * @var bool|null |
||
42 | */ |
||
43 | private $nePasSaisirSoldeFin; |
||
44 | |||
45 | /** |
||
46 | * Periode. |
||
47 | * |
||
48 | * @var DateTime|null |
||
49 | */ |
||
50 | private $periode; |
||
51 | |||
52 | /** |
||
53 | * Solde fin. |
||
54 | * |
||
55 | * @var float|null |
||
56 | */ |
||
57 | private $soldeFin; |
||
58 | |||
59 | |||
60 | /** |
||
61 | * Constructor. |
||
62 | */ |
||
63 | public function __construct() { |
||
66 | |||
67 | /** |
||
68 | * Get the code journal. |
||
69 | * |
||
70 | * @return string|null Returns the code journal. |
||
71 | */ |
||
72 | public function getCodeJournal(): ?string{ |
||
75 | |||
76 | /** |
||
77 | * Get the methode. |
||
78 | * |
||
79 | * @return string|null Returns the methode. |
||
80 | */ |
||
81 | public function getMethode(): ?string{ |
||
84 | |||
85 | /** |
||
86 | * Get the ne pas saisir solde fin. |
||
87 | * |
||
88 | * @return bool|null Returns the ne pas saisir solde fin. |
||
89 | */ |
||
90 | public function getNePasSaisirSoldeFin(): ?bool{ |
||
93 | |||
94 | /** |
||
95 | * Get the periode. |
||
96 | * |
||
97 | * @return DateTime|null Returns the periode. |
||
98 | */ |
||
99 | public function getPeriode(): ?DateTime{ |
||
102 | |||
103 | /** |
||
104 | * Get the solde fin. |
||
105 | * |
||
106 | * @return float|null Returns the solde fin. |
||
107 | */ |
||
108 | public function getSoldeFin(): ?float{ |
||
111 | |||
112 | /** |
||
113 | * Set the code journal. |
||
114 | * |
||
115 | * @param string|null $codeJournal The code journal. |
||
116 | * @return JournauxRapproch Returns this Journaux rapproch. |
||
117 | */ |
||
118 | public function setCodeJournal(?string $codeJournal): JournauxRapproch { |
||
122 | |||
123 | /** |
||
124 | * Set the methode. |
||
125 | * |
||
126 | * @param string|null $methode The methode. |
||
127 | * @return JournauxRapproch Returns this Journaux rapproch. |
||
128 | */ |
||
129 | public function setMethode(?string $methode): JournauxRapproch { |
||
133 | |||
134 | /** |
||
135 | * Set the ne pas saisir solde fin. |
||
136 | * |
||
137 | * @param bool|null $nePasSaisirSoldeFin The ne pas saisir solde fin. |
||
138 | * @return JournauxRapproch Returns this Journaux rapproch. |
||
139 | */ |
||
140 | public function setNePasSaisirSoldeFin(?bool $nePasSaisirSoldeFin): JournauxRapproch { |
||
144 | |||
145 | /** |
||
146 | * Set the periode. |
||
147 | * |
||
148 | * @param DateTime|null $periode The periode. |
||
149 | * @return JournauxRapproch Returns this Journaux rapproch. |
||
150 | */ |
||
151 | public function setPeriode(?DateTime $periode): JournauxRapproch { |
||
155 | |||
156 | /** |
||
157 | * Set the solde fin. |
||
158 | * |
||
159 | * @param float|null $soldeFin The solde fin. |
||
160 | * @return JournauxRapproch Returns this Journaux rapproch. |
||
161 | */ |
||
162 | public function setSoldeFin(?float $soldeFin): JournauxRapproch { |
||
166 | } |
||
167 |