public static function getHouseIllegalReason($houseIds)
 {
     $houseIllegalInfoList = Model_Log_AjkIllegalHouse::getHouseIllegalInfoEx($houseIds);
     if (empty($houseIllegalInfoList)) {
         return array();
     }
     $rule = sprintf('http://%s/help/question/630', APF::get_instance()->get_config('base_domain'));
     $rtn = array_fill_keys($houseIds, array('reason' => '', 'time' => '', 'rule' => $rule));
     foreach ($houseIllegalInfoList as $houseIllegalInfo) {
         $rtn[$houseIllegalInfo['propId']]['id'] = $houseIllegalInfo['propId'];
         $rtn[$houseIllegalInfo['propId']]['reason'] = $houseIllegalInfo['reason'];
         $rtn[$houseIllegalInfo['propId']]['time'] = date('Y-m-d', $houseIllegalInfo['postTime']);
     }
     return $rtn;
 }