blob: c8d798c5f16ed20f2628f37ba8d704e00ffd6a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
class TSqlMapInsert extends TSqlMapStatement
{
private $_selectKey=null;
private $_generate=null;
public function getSelectKey(){ return $this->_selectKey; }
public function setSelectKey($value){ $this->_selectKey = $value; }
public function getGenerate(){ return $this->_generate; }
public function setGenerate($value){ $this->_generate = $value; }
}
?>
|