Id */ public function getId() { return $this->get('id'); } /** * Function to get Name of this record instance * @return Name */ public function getName() { return $this->get('name'); } /** * Function to get module of this record instance * @return $moduleModel */ public function getModule() { return $this->module; } /** * Function to set module instance to this record instance * @param $moduleModel * @return this record */ public function setModule($moduleModel) { $this->module = $moduleModel; return $this; } }