src/Dto/Stoccaggio/ScarichiDto.php line 116

Open in your IDE?
  1. <?php
  2. namespace App\Dto\Stoccaggio;
  3. class ScarichiDto implements \JsonSerializable {
  4.     private $posizione;
  5.     private $serCollo;
  6.     private $quantity;
  7.     private $codProd;
  8.     private $dataOrd;
  9.     private $numOrd;
  10.     private $gestioneOrd;
  11.     private $codMdep;
  12.     /**
  13.      * @return mixed
  14.      */
  15.     public function getPosizione() {
  16.         return $this->posizione;
  17.     }
  18.     /**
  19.      * @param mixed $posizione
  20.      */
  21.     public function setPosizione($posizione): void {
  22.         $this->posizione $posizione;
  23.     }
  24.     /**
  25.      * @return mixed
  26.      */
  27.     public function getQuantity() {
  28.         return $this->quantity;
  29.     }
  30.     /**
  31.      * @param mixed $quantity
  32.      */
  33.     public function setQuantity($quantity): void {
  34.         $this->quantity $quantity;
  35.     }
  36.     /**
  37.      * @return mixed
  38.      */
  39.     public function getCodProd() {
  40.         return $this->codProd;
  41.     }
  42.     /**
  43.      * @param mixed $codProd
  44.      */
  45.     public function setCodProd($codProd): void {
  46.         $this->codProd $codProd;
  47.     }
  48.     /**
  49.      * @return mixed
  50.      */
  51.     public function getDataOrd() {
  52.         return $this->dataOrd;
  53.     }
  54.     /**
  55.      * @param mixed $dataOrd
  56.      */
  57.     public function setDataOrd($dataOrd): void {
  58.         $this->dataOrd $dataOrd;
  59.     }
  60.     /**
  61.      * @return mixed
  62.      */
  63.     public function getNumOrd() {
  64.         return $this->numOrd;
  65.     }
  66.     /**
  67.      * @param mixed $numOrd
  68.      */
  69.     public function setNumOrd($numOrd): void {
  70.         $this->numOrd $numOrd;
  71.     }
  72.     /**
  73.      * @return mixed
  74.      */
  75.     public function getGestioneOrd() {
  76.         return $this->gestioneOrd;
  77.     }
  78.     /**
  79.      * @param mixed $gestioneOrd
  80.      */
  81.     public function setGestioneOrd($gestioneOrd): void {
  82.         $this->gestioneOrd $gestioneOrd;
  83.     }
  84.     /**
  85.      * @return mixed
  86.      */
  87.     public function getCodMdep() {
  88.         return $this->codMdep;
  89.     }
  90.     /**
  91.      * @param mixed $codMdep
  92.      */
  93.     public function setCodMdep($codMdep): void {
  94.         $this->codMdep $codMdep;
  95.     }
  96.     public function jsonSerialize() {
  97.         return [
  98.             "posizione" => $this->posizione,
  99.             "quantity" => $this->quantity,
  100.             "codProd" => $this->codProd,
  101.             "serCollo" => $this->serCollo,
  102.             "dataOrd" => $this->dataOrd,
  103.             "numOrd" => $this->numOrd,
  104.             "gestioneOrd" => $this->gestioneOrd,
  105.             "codMdep" => $this->codMdep,
  106.         ];
  107.     }
  108.     /**
  109.      * @return mixed
  110.      */
  111.     public function getSerCollo() {
  112.         return $this->serCollo;
  113.     }
  114.     /**
  115.      * @param mixed $serCollo
  116.      */
  117.     public function setSerCollo($serCollo): void {
  118.         $this->serCollo $serCollo;
  119.     }
  120. }