public function getBrokerPayInfoByBrokerId($brokerid, $p_bolNeedCache = true)
 {
     $key = Util_MemCacheKey::get_vip_broker($brokerid);
     APF::get_instance()->benchmark_begin(__CLASS__ . " getBrokerPayInfoByBrokerId ");
     $memcache = APF_Cache_Factory::get_instance()->get_memcache();
     $list = $memcache->get($key);
     if (!$list || !$p_bolNeedCache) {
         $time = Util_MemCacheTime::get_property_list_broker();
         $list = parent::getBrokerPayInfoByBrokerId($brokerid);
         $memcache->add($key, $list, 0, $time);
     }
     APF::get_instance()->benchmark_end(__CLASS__ . " getBrokerPayInfoByBrokerId ");
     return $list;
 }