<?php
namespace App\Dto\Stoccaggio;
class ScarichiDto implements \JsonSerializable {
private $posizione;
private $serCollo;
private $quantity;
private $codProd;
private $dataOrd;
private $numOrd;
private $gestioneOrd;
private $codMdep;
/**
* @return mixed
*/
public function getPosizione() {
return $this->posizione;
}
/**
* @param mixed $posizione
*/
public function setPosizione($posizione): void {
$this->posizione = $posizione;
}
/**
* @return mixed
*/
public function getQuantity() {
return $this->quantity;
}
/**
* @param mixed $quantity
*/
public function setQuantity($quantity): void {
$this->quantity = $quantity;
}
/**
* @return mixed
*/
public function getCodProd() {
return $this->codProd;
}
/**
* @param mixed $codProd
*/
public function setCodProd($codProd): void {
$this->codProd = $codProd;
}
/**
* @return mixed
*/
public function getDataOrd() {
return $this->dataOrd;
}
/**
* @param mixed $dataOrd
*/
public function setDataOrd($dataOrd): void {
$this->dataOrd = $dataOrd;
}
/**
* @return mixed
*/
public function getNumOrd() {
return $this->numOrd;
}
/**
* @param mixed $numOrd
*/
public function setNumOrd($numOrd): void {
$this->numOrd = $numOrd;
}
/**
* @return mixed
*/
public function getGestioneOrd() {
return $this->gestioneOrd;
}
/**
* @param mixed $gestioneOrd
*/
public function setGestioneOrd($gestioneOrd): void {
$this->gestioneOrd = $gestioneOrd;
}
/**
* @return mixed
*/
public function getCodMdep() {
return $this->codMdep;
}
/**
* @param mixed $codMdep
*/
public function setCodMdep($codMdep): void {
$this->codMdep = $codMdep;
}
public function jsonSerialize() {
return [
"posizione" => $this->posizione,
"quantity" => $this->quantity,
"codProd" => $this->codProd,
"serCollo" => $this->serCollo,
"dataOrd" => $this->dataOrd,
"numOrd" => $this->numOrd,
"gestioneOrd" => $this->gestioneOrd,
"codMdep" => $this->codMdep,
];
}
/**
* @return mixed
*/
public function getSerCollo() {
return $this->serCollo;
}
/**
* @param mixed $serCollo
*/
public function setSerCollo($serCollo): void {
$this->serCollo = $serCollo;
}
}