* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package Prado\Data\SqlMap\Configuration */ namespace Prado\Data\SqlMap\Configuration; /** * TSqlMapSelect class file. * * @author Wei Zhuo * @package Prado\Data\SqlMap\Statements * @since 3.1 */ class TSqlMapSelect extends TSqlMapStatement { private $_generate; public function getGenerate(){ return $this->_generate; } public function setGenerate($value){ $this->_generate = $value; } }