Stock.php 698 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace Core\App\Entity;
  3. class Stock
  4. {
  5. public $identifier_name;
  6. public $identifier_value;
  7. public $qty;
  8. public function getIdentifierName()
  9. {
  10. return $this->identifier_name;
  11. }
  12. public function getIdentifierValue()
  13. {
  14. return $this->identifier_value;
  15. }
  16. public function getQty()
  17. {
  18. return $this->qty;
  19. }
  20. public function setIdentifierName($identifier_name)
  21. {
  22. $this->identifier_name = $identifier_name;
  23. }
  24. public function setIdentifierValue($identifier_value)
  25. {
  26. $this->identifier_value = $identifier_value;
  27. }
  28. public function setQty($qty)
  29. {
  30. $this->qty = $qty;
  31. }
  32. }