/**
  * 获取job数据
  * @return array
  */
 protected function getJobData()
 {
     if ($this->jobType == Const_ShowcaseOrders::SALE_DB) {
         //日志类型--二手房
         $siteType = 1;
     } elseif ($this->jobType == Const_ShowcaseOrders::RENT_DB) {
         //日志类型--出租
         $siteType = 2;
     } else {
         return array();
     }
     return Bll_Plan_Bid_AjkChoice::getLProLogInfoMoreThanId($this->id, $this->jobYmd, $siteType, array(5, 6, 20, 21), $this->limit);
 }