summaryrefslogtreecommitdiffstats
path: root/application/models/BootMenuEntries.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/BootMenuEntries.php')
-rw-r--r--application/models/BootMenuEntries.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/application/models/BootMenuEntries.php b/application/models/BootMenuEntries.php
index 0d2b5cd..3bb05ea 100644
--- a/application/models/BootMenuEntries.php
+++ b/application/models/BootMenuEntries.php
@@ -38,6 +38,46 @@ class Application_Model_BootMenuEntries
}
return $this;
}
+ public function getBootosID()
+ {
+ return $this->_bootosID;
+ }
+ public function setBootosID($_bootosID)
+ {
+ $this->_bootosID = $_bootosID;
+ }
+ public function getBootmenuID()
+ {
+ return $this->_bootmenuID;
+ }
+ public function setBootmenuID($_bootmenuID)
+ {
+ $this->_bootmenuID = $_bootmenuID;
+ }
+ public function getTitle()
+ {
+ return $this->_title;
+ }
+ public function setTitle($_title)
+ {
+ $this->_title = $_title;
+ }
+ public function getKcl()
+ {
+ return $this->_kcl;
+ }
+ public function setKcl($_kcl)
+ {
+ $this->_kcl = $_kcl;
+ }
+ public function getOrder()
+ {
+ return $this->_order;
+ }
+ public function setOrder($_order)
+ {
+ $this->_order = $_order;
+ }
}