|
@@ -97,6 +97,11 @@ class CMTS implements DeviceInterface, TenancyIdTraitInterface, SoftDeleteInterf
|
|
|
*/
|
|
|
protected $timeCmtsOctets = 5;
|
|
|
|
|
|
+ /**
|
|
|
+ * @ORM\Column(type="integer", options={"unsigned":true, "default":10})
|
|
|
+ */
|
|
|
+ protected $timeCmStats = 10;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* @return string
|
|
@@ -251,6 +256,7 @@ class CMTS implements DeviceInterface, TenancyIdTraitInterface, SoftDeleteInterf
|
|
|
'executeSnmp' => $this->executeSnmp,
|
|
|
'timeScan' => $this->timeScan,
|
|
|
'timeCmtsOctets' => $this->timeCmtsOctets,
|
|
|
+ 'timeCmStats' => $this->timeCmStats,
|
|
|
];
|
|
|
|
|
|
if($this->model) {
|
|
@@ -315,6 +321,27 @@ class CMTS implements DeviceInterface, TenancyIdTraitInterface, SoftDeleteInterf
|
|
|
return $this->timeCmtsOctets;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Set timeCmStats
|
|
|
+ *
|
|
|
+ * @param integer $timeCmStats
|
|
|
+ */
|
|
|
+ public function setTimeCmStats($timeCmStats)
|
|
|
+ {
|
|
|
+ $this->timeCmStats = $timeCmStats;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Get timeCmStats
|
|
|
+ *
|
|
|
+ * @return integer
|
|
|
+ */
|
|
|
+ public function getTimeCmStats()
|
|
|
+ {
|
|
|
+ return $this->timeCmStats;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* @return int
|
|
|
*/
|