<?php

class MartDataKorsupgahAll extends Phalcon\Mvc\Model
{
    /**
     * Initialize method for model.
     */
    public function initialize()
    {
        $this->setSchema('jaga');
        $this->setSource('mart_data_korsupgah_all');
    }

    /**
     * Returns table name mapped in the model.
     *
     * @return string
     */
    public function getSource()
    {
        return 'mart_data_korsupgah_all';
    }
}

?>