示例#1
0
 public function setCategory()
 {
     $pstJobTables = new Pstcar();
     $this->_pstCategory = $pstJobTables->getPst($this->_posting->id);
 }
示例#2
0
文件: Cars.php 项目: xinghao/shs
 protected function extraJoin($select)
 {
     $psthomes = new Pstcar();
     $select->joinLeft(array('i' => $psthomes->getTableName()), 'a.id = i.id', array('makeYear'));
     return $select;
 }