Exemplo n.º 1
0
 public function getPropInfoBll($propId, $cityId)
 {
     apf_require_class("DAO_Property_common");
     return DAO_Property_common::getPropertyInfoDao($propId, $cityId, true);
 }
Exemplo n.º 2
0
 /**
  * 更新房源areacode
  *
  * @param $proId
  * @param $cityId
  * @param $areacode
  * @return bool
  */
 public function updatePropAreacode($proId, $cityId, $areacode, $time)
 {
     $dao = new DAO_Property_common();
     $result = $dao->updateAreacode($proId, $cityId, $areacode, $time);
     if ($result && !isset($result[-9999])) {
         return true;
     } else {
         return false;
     }
 }
Exemplo n.º 3
0
 /**
  * 
  * 获取爱房房源信息
  * @param unknown_type $p_intPropertyID
  * @param unknown_type $p_bolStrictRefreshCache
  * @param unknown_type $p_bolStrictMaster
  * @return Ambigous <NULL, array/NULL, multitype:>
  */
 public function getAifangPropertyBaseInfo($p_intPropertyID, $p_bolStrictRefreshCache = false, $p_bolStrictMaster = false)
 {
     /**
      * 获取ORM中的缓存数据,判断key和数据是否对应
      * @todo 监测一段时间后删除该段代码
      */
     $arrPropertyData = DAO_Property_common::getThirdPropertyDetail($p_intPropertyID, $p_bolStrictRefreshCache, $p_bolStrictMaster);
     return $arrPropertyData;
 }