| 1 | <?php |
||
| 18 | class SalePerception |
||
| 19 | { |
||
| 20 | use SalePerceptionValidator; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @Assert\NotBlank() |
||
| 24 | * @Assert\Length(min="2", max="2") |
||
| 25 | * |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | private $codReg; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @Assert\NotBlank() |
||
| 32 | * |
||
| 33 | * @var float |
||
| 34 | */ |
||
| 35 | private $mtoBase; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @Assert\NotBlank() |
||
| 39 | * |
||
| 40 | * @var float |
||
| 41 | */ |
||
| 42 | private $mto; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @Assert\NotBlank() |
||
| 46 | * |
||
| 47 | * @var float |
||
| 48 | */ |
||
| 49 | private $mtoTotal; |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getCodReg() |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @param string $codReg |
||
| 61 | * @return SalePerception |
||
| 62 | */ |
||
| 63 | public function setCodReg($codReg) |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @return float |
||
| 71 | */ |
||
| 72 | public function getMtoBase() |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @param float $mtoBase |
||
| 79 | * @return SalePerception |
||
| 80 | */ |
||
| 81 | public function setMtoBase($mtoBase) |
||
| 86 | |||
| 87 | /** |
||
| 88 | * @return float |
||
| 89 | */ |
||
| 90 | public function getMto() |
||
| 94 | |||
| 95 | /** |
||
| 96 | * @param float $mto |
||
| 97 | * @return SalePerception |
||
| 98 | */ |
||
| 99 | public function setMto($mto) |
||
| 104 | |||
| 105 | /** |
||
| 106 | * @return float |
||
| 107 | */ |
||
| 108 | public function getMtoTotal() |
||
| 112 | |||
| 113 | /** |
||
| 114 | * @param float $mtoTotal |
||
| 115 | * @return SalePerception |
||
| 116 | */ |
||
| 117 | public function setMtoTotal($mtoTotal) |
||
| 122 | } |