diff --git a/src/Entity/Warranty.php b/src/Entity/Warranty.php index 5d45e806..06c18590 100644 --- a/src/Entity/Warranty.php +++ b/src/Entity/Warranty.php @@ -237,6 +237,11 @@ class Warranty */ protected $create_source; + /** + * @ORM\Column(type="string", length=80, nullable=true) + */ + protected $dealer_branch_code; + public function __construct() { $this->date_create = new DateTime(); @@ -676,4 +681,14 @@ class Warranty return $this->create_source; } + public function setDealerBranchCode($dealer_branch_code) + { + $this->dealer_branch_code = $dealer_branch_code; + return $this; + } + + public function getDealerBranchCode() + { + return $this->dealer_branch_code; + } }