|
@@ -140,7 +140,12 @@ class OLT implements DeviceInterface, TenancyIdTraitInterface, LocationInterface
|
|
|
* @ORM\Column(type="integer", options={"unsigned":true, "default":5})
|
|
|
*/
|
|
|
protected $timeOnuStats = 5;
|
|
|
-
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @ORM\Column(type="string", nullable=true)
|
|
|
+ */
|
|
|
+ protected $enable;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* @return string
|
|
@@ -454,5 +459,25 @@ class OLT implements DeviceInterface, TenancyIdTraitInterface, LocationInterface
|
|
|
{
|
|
|
return $this->timePonStats;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return string
|
|
|
+ */
|
|
|
+ public function getEnable()
|
|
|
+ {
|
|
|
+ return $this->enable;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param string $enable
|
|
|
+ *
|
|
|
+ * @return $this
|
|
|
+ */
|
|
|
+ public function setEnable($enable)
|
|
|
+ {
|
|
|
+ $this->enable = $enable;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
|
|
|
-}
|
|
|
+}
|